Open WJ-Yuan opened 1 year ago
安装 EditorConfig for VS Code
插件后,在根目录新增 .editorconfig
配置文件,统一项目文件的缩进风格,和缩进空格数等
.editorconfig
root = true # 控制配置文件 .editorconfig 是否生效的字段
[**] # 匹配全部文件
indent_style = space # 缩进风格,可选space|tab
indent_size = 2 # 缩进的空格数
charset = utf-8 # 设置字符集
trim_trailing_whitespace = true # 删除一行中的前后空格
insert_final_newline = true # 设为true表示使文件以一个空白行结尾
end_of_line = lf
[**.md] # 匹配md文件
trim_trailing_whitespace = false