| Index: .editorconfig |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/.editorconfig |
| @@ -0,0 +1,16 @@ |
| +# EditorConfig is awesome: http://EditorConfig.org |
| + |
| +# top-most EditorConfig file |
| +root = true |
| + |
| +# Defaults |
|
kzar
2016/09/16 10:01:05
Perhaps we should add `max_line_length = 80`?
Wladimir Palant
2016/09/16 10:29:01
"Supported By A Limited Number of Editors"
But ev
kzar
2016/09/16 10:37:51
Ah you're right, never mind.
Thomas Greiner
2016/09/16 11:55:54
According to https://github.com/editorconfig/edito
|
| +indent_style = space |
| +indent_size = 2 |
| +end_of_line = lf |
| +charset = utf-8 |
| +trim_trailing_whitespace = true |
|
Thomas Greiner
2016/09/16 11:55:54
For me personally, this one is quite inconvenient
Wladimir Palant
2016/09/16 12:15:32
I guess that's why Atom isn't trimming whitespace
|
| +insert_final_newline = true |
| + |
| +# PEP 8 |
| +[*.py] |
| +indent_size = 4 |