提交 | 用户 | 时间 | ||
722af2 | 1 | # http://editorconfig.org |
X | 2 | root = true |
3 | ||
4 | # 空格替代Tab缩进在各种编辑工具下效果一致 | |
5 | [*] | |
6 | indent_style = space | |
7 | indent_size = 4 | |
8 | charset = utf-8 | |
9 | end_of_line = lf | |
10 | trim_trailing_whitespace = true | |
11 | insert_final_newline = true | |
12 | ||
13 | [*.{json,yml,yaml}] | |
14 | indent_size = 2 | |
15 | ||
16 | [*.md] | |
17 | insert_final_newline = false | |
18 | trim_trailing_whitespace = false |