alexey-pelykh
commited on
Commit
•
a32fff3
1
Parent(s):
f6f2ef9
Add .editorconfig file (#1628)
Browse files- .editorconfig +12 -0
.editorconfig
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
root = true
|
2 |
+
|
3 |
+
[*]
|
4 |
+
indent_style = space
|
5 |
+
indent_size = 4
|
6 |
+
end_of_line = lf
|
7 |
+
trim_trailing_whitespace = true
|
8 |
+
insert_final_newline = true
|
9 |
+
charset = utf-8
|
10 |
+
|
11 |
+
[*.py]
|
12 |
+
max_line_length = 95
|