UNPKG

528 BPlain TextView Raw
1# EditorConfig helps developers define and maintain consistent
2# coding styles between different editors and IDEs
3# http://editorconfig.org
4
5root = true
6
7[**]
8
9# 编码格式
10charset = utf-8
11
12# 文件结尾符
13end_of_line = lf
14insert_final_newline = true
15
16# 去除行尾空白字符
17trim_trailing_whitespace = true
18
19# space 缩进
20indent_style = space
21indent_size = 2
22
23[*.md]
24trim_trailing_whitespace = false
25
26[{package.json,.babelrc,.eslintrc}]
27indent_style = space
28indent_size = 2
29
30[*.yml]
31indent_style = space
32indent_size = 2
\No newline at end of file