我的项目有 .editorconfig 文件:
[*.{js}]
charset = utf-8
indent_style = space
indent_size = 4
我认为这将迫使我的 VS Code 使用带有 4 个空格的缩进样式空间。
我EditorConfig for vs code
从扩展列表中安装了扩展。
但仍然没有,我新创建的文件没有自动设置配置的空间样式。问题是什么?
我的项目有 .editorconfig 文件:
[*.{js}]
charset = utf-8
indent_style = space
indent_size = 4
我认为这将迫使我的 VS Code 使用带有 4 个空格的缩进样式空间。
我EditorConfig for vs code
从扩展列表中安装了扩展。
但仍然没有,我新创建的文件没有自动设置配置的空间样式。问题是什么?
尝试
root = true
[*.js]
indent_style = space
indent_size = 4
charset = utf-8
你也可以试试这个,如果你喜欢,你可以换成空格:)
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
VS Code需要插件才能使用editorconfig,所以需要安装插件