You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
514 B

4 years ago
# 告诉EditorConfig插件,这是根文件,不用继续往上查找
6 years ago
root = true
4 years ago
# 匹配全部文件
6 years ago
[*]
4 years ago
# 设置字符集
6 years ago
charset = utf-8
4 years ago
# 缩进风格,可选space、tab
6 years ago
indent_style = space
4 years ago
# 缩进的空格数
indent_size = 2
# 结尾换行符,可选lf、cr、crlf
6 years ago
end_of_line = lf
4 years ago
# 在文件结尾插入新行
6 years ago
insert_final_newline = true
4 years ago
# 删除一行中的前后空格
6 years ago
trim_trailing_whitespace = true
4 years ago
# 匹配md结尾的文件
6 years ago
[*.md]
4 years ago
insert_final_newline = false
6 years ago
trim_trailing_whitespace = false