vue-cli4配置代码编辑风格
1、在项目中新建.editorconfig文件
在项目目录中,即与src文件夹同级目录下,创建名字为.editorconfig的文件
2、在创建的.editorconfig文件中配置
root = true # 告诉EditorConfig插件,这是根文件,不用继续往上查找
[*] # 匹配所有文件
charset = utf-8 # 设置编码
indent_style = space # 缩进风格,可选space tab
indent_size = 2 # 缩进的空格数
end_of_line = lf // 结尾换行符,可选"lf"、"cr"、"crlf"(系统差异)
insert_final_newline = true // 是否在文件的最后插入一个空行
trim_trailing_whitespace = true // 是否删除行尾的空格
注意:vscode 下载依赖插件"EditorConfig for VS Code"
.editorconfig才会起作用。
赞 (0)