Diff of /.editorconfig [000000] .. [7fc5df]

Switch to unified view

a b/.editorconfig
1
root = true
2
3
[*]
4
indent_style = space
5
indent_size = 4
6
insert_final_newline = true
7
trim_trailing_whitespace = true
8
end_of_line = lf
9
charset = utf-8
10
11
# pylint default setting is 100 chars (PEP8 recommends 79)
12
[*.py]
13
max_line_length = 100
14
15
[Makefile]
16
indent_style = tab
17
18
[*.{js,html}]
19
indent_style = space
20
indent_size = 2
21
charset = utf-8
22
trim_trailing_whitespace = true
23
insert_final_newline = true
24
end_of_line = lf
25
# editorconfig-tools is unable to ignore longs strings or urls
26
max_line_length = null