We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44cb785 commit 91f59f4Copy full SHA for 91f59f4
.editorconfig
@@ -0,0 +1,32 @@
1
+# http://editorconfig.org
2
+
3
+root = true
4
5
+[*]
6
+indent_style = space
7
+indent_size = 2
8
+insert_final_newline = true
9
+trim_trailing_whitespace = true
10
+charset = utf-8
11
+end_of_line = lf
12
13
+[*.py]
14
+indent_size = 4
15
+max_line_length = 120
16
17
+[*.md]
18
19
20
+[*.html]
21
+max_line_length = off
22
23
+[*.js]
24
25
26
+[*.css]
27
28
29
30
+# Tests can violate line width restrictions in the interest of clarity.
31
+[**/test_*.py]
32
0 commit comments