##// END OF EJS Templates
mercurial: force LF endings for *.py, *.{c,h} and *.t in .editorconfig...
Matt Harbison -
r45952:c25efc46 default
parent child Browse files
Show More
@@ -1,18 +1,21 b''
1 1 # See http://EditorConfig.org for the specification
2 2
3 3 root = true
4 4
5 5 [*.py]
6 6 indent_size = 4
7 7 indent_style = space
8 8 trim_trailing_whitespace = true
9 end_of_line = lf
9 10
10 11 [*.{c,h}]
11 12 indent_size = 8
12 13 indent_style = tab
13 14 trim_trailing_whitespace = true
15 end_of_line = lf
14 16
15 17 [*.t]
16 18 indent_size = 2
17 19 indent_style = space
18 20 trim_trailing_whitespace = false
21 end_of_line = lf
General Comments 0
You need to be logged in to leave comments. Login now