我目前正在使用VSCode,我遇到了这个问题。我希望将空间大小设置为1,并将制表符大小等于2作为每个项目的默认值。但它仍然作为空间回归:每个项目4个。 当我设置spaces = 2,并运行Beautify文件。所有东西看起来都很好用space = 2.然后我点击保存它格式化我的文件缩进大小4.如何将其设置为默认等于2个人?
即使我更改了用户设置
答案 0 :(得分:0)
默认情况下,VSCode尝试检测文件的缩进选项。所以将editor.detectIndentation设置为false
// When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
"editor.detectIndentation": false,
答案 1 :(得分:0)
EditorConfig是用于建立项目范围格式选项的便捷标准:http://editorconfig.org。
有一个支持它的VSCode扩展程序:https://github.com/editorconfig/editorconfig-vscode
这并没有直接回答你的问题,但效果很好。如果您切换编辑器,您仍然可以通过获取EditorConfig的每个编辑器插件来保持格式标准。