19

我的项目有 .editorconfig 文件:

[*.{js}]
charset = utf-8
indent_style = space
indent_size = 4

我认为这将迫使我的 VS Code 使用带有 4 个空格的缩进样式空间。

EditorConfig for vs code从扩展列表中安装了扩展。

但仍然没有,我新创建的文件没有自动设置配置的空间样式。问题是什么?

4

4 回答 4

15

我想我找到了解决方案。当我.editorconfig在 VSCode 中的文件夹结构侧边栏上单击鼠标右键并选择Generate .editorconfig(从而让插件创建它)时,它可以工作。

单击文件下方的空白区域:

在此处输入图像描述

于 2019-02-14T17:56:35.123 回答
4

尝试

root = true
[*.js]
indent_style = space
indent_size = 4
charset = utf-8
于 2018-01-09T14:40:10.883 回答
1

你也可以试试这个,如果你喜欢,你可以换成空格:)

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
于 2018-09-06T09:41:28.223 回答
-2

VS Code需要插件才能使用editorconfig,所以需要安装插件

于 2019-02-14T13:38:06.293 回答