vscode 简易编辑格式.editorconfig

发布日期: 2019-10-08 00:00:00
点击次数: 573
大字 小字
vscode 简易编辑格式.editorconfig
注:要放置根目录下

root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8

[*.{html,js,css,scss,xml}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.yml]
indent_style = space
indent_size = 2


返回顶部