vscode下prettier代码缩进设置
2021-10-25 本文已影响0人
漫漫江雪
由于在vscode下安装了prettier插件,并设置了自动格式化,
默认是2个空格的缩进,但是有很些项目是用的4个空格的缩进,在vscode下编辑时被自动格式化成2个空格,对源码影响较大
可以通过如下配置文件设置
.prettierrc
{
"bracketSpacing": true,
"printWidth": 300,
"tabWidth": 4,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
.editorconfig
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
两个配置文件都是在根目录下