a | b/.editorconfig | ||
---|---|---|---|
1 | # http://editorconfig.org |
||
2 | |||
3 | root = true |
||
4 | |||
5 | [*] |
||
6 | indent_style = space |
||
7 | indent_size = 4 |
||
8 | trim_trailing_whitespace = true |
||
9 | insert_final_newline = true |
||
10 | charset = utf-8 |
||
11 | end_of_line = lf |
||
12 | |||
13 | [*.bat] |
||
14 | indent_style = tab |
||
15 | end_of_line = crlf |
||
16 | |||
17 | [LICENSE] |
||
18 | insert_final_newline = false |
||
19 | |||
20 | [Makefile] |
||
21 | indent_style = tab |