Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 # EditorConfig is awesome: http://EditorConfig.org | |
2 | |
3 # top-most EditorConfig file | |
4 root = true | |
5 | |
6 # 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
| |
7 indent_style = space | |
8 indent_size = 2 | |
9 end_of_line = lf | |
10 charset = utf-8 | |
11 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
| |
12 insert_final_newline = true | |
13 | |
14 # PEP 8 | |
15 [*.py] | |
16 indent_size = 4 | |
OLD | NEW |