自用
vscode
插件
1. EditorConfig for VS Code
editorconfig 用来定义编辑器的编码格式规范,编辑器的行为会与 .editorconfig
文件中定义的一致,并且其优先级比编辑器自身的设置要高。
简单说明:在项目根目录下创建 .editorconfi
文件,然后设置好内容,则其他人更新后同步到本地,你们的代码规范就会保持一致。
我的 .editorconfi
文件内容:
root = true # 根目录的配置文件,编辑器会由当前目录向上查找,如果找到`roor = true` 的文件,则不再查找
[*]
indent_style = space # 空格缩进,可选"space"、"tab"
indent_size = 4 # 缩进空格为4个
end_of_line = lf # 结尾换行符,可选"lf"、"cr"、"crlf"
charset = utf-8 # 文件编码是 utf-8
trim_trailing_whitespace = true # 不保留行末的空格
insert_final_newline = true # 文件末尾添加一个空行
curly_bracket_next_line = false # 大括号不另起一行
spaces_around_operators = true # 运算符两遍都有空格
indent_brace_style = 1tbs # 条件语句格式是 1tbs
[*.js] # 对所有的 js 文件生效
quote_type = single # 字符串使用单引号
[*.{html,less,css,json}] # 对所有 html, less, css, json 文件生效
quote_type = double # 字符串使用双引号
[package.json] # 对 package.json 生效
indent_size = 2 # 使用2个空格缩进
作者: 唯之为之
链接: https://weizwz.com/posts/8c7d05c9.html
来源: 唯之为之
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
标签:文件,插件,indent,vscode,编辑器,空格,json,true
From: https://www.cnblogs.com/weizwz/p/17352691.html