我的项目的.editorconfig文件包含:
[*.{js}]
charset = utf-8
indent_style = space
indent_size = 4
我认为这会强制我的VS代码使用4个空格的缩进样式空间。
我在扩展程序列表中安装了EditorConfig for vs code
扩展程序。
但仍然没有,我新创建的文件不会自动设置配置的空间样式。有什么问题?
答案 0 :(得分:3)
试
root = true
[*.js]
indent_style = space
indent_size = 4
charset = utf-8
答案 1 :(得分:1)
VS Code需要插件才能使用editorconfig,因此您需要安装插件
答案 2 :(得分:0)
您也可以尝试使用此方法,如果愿意,可以更改为空格:)
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = tab
indent_size = 2
[*.{js,txt,md,css,html,php,py,json,yml,sass,pug}]
indent_style = tab
indent_size = 2
[*.{diff,md}]
trim_trailing_whitespace = false
答案 3 :(得分:0)
我想我找到了解决方案。当我右键单击VSCode中的文件夹结构侧边栏来创建.editorconfig
并选择Generate .editorconfig
(从而让插件来创建它)时,它可以工作。