We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dec1039 commit 841208dCopy full SHA for 841208d
.editorconfig
@@ -0,0 +1,36 @@
1
+# http://editorconfig.org
2
+root = true
3
+
4
+[*]
5
+indent_style = space
6
+indent_size = 2
7
+end_of_line = lf
8
+charset = utf-8
9
+trim_trailing_whitespace = true
10
+insert_final_newline = true
11
12
+# Use 4 spaces for the Python files
13
+[*.py]
14
+indent_size = 4
15
+max_line_length = 80
16
17
+# The JSON files contain newlines inconsistently
18
+[*.json]
19
+insert_final_newline = ignore
20
21
+# Minified JavaScript files shouldn't be changed
22
+[**.min.js]
23
+indent_style = ignore
24
25
26
+# Makefiles always use tabs for indentation
27
+[Makefile]
28
+indent_style = tab
29
30
+# Batch files use tabs for indentation
31
+[*.bat]
32
33
34
+[*.md]
35
+trim_trailing_whitespace = false
36
0 commit comments