共计 296 个字符,预计需要花费 1 分钟才能阅读完成。
通知 EditorConfig 插件,这是根文件,不必持续往上查找
root = true
匹配全副文件
[*]
设置字符集
charset = utf-8
缩进格调,可选 space、tab
indent_style = space
缩进的空格数
indent_size = 2
结尾换行符,可选 lf、cr、crlf
end_of_line = lf
在文件结尾插入新行
insert_final_newline = true
删除一行中的前后空格
trim_trailing_whitespace = true
匹配 md 结尾的文件
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
正文完