我想配置vscode以使用2个缩进空格格式化我的JSON对象,而不是默认情况下为4。我怎么能这样做?
答案 0 :(得分:1)
安装编辑器配置插件。
ext install EditorConfig
使用以下内容将.editorconfig
文件添加到项目根目录:
[*.json]
indent_style = space
indent_size = 2
另见:
答案 1 :(得分:0)
在VSCode的settings.json中粘贴这一行,你们都已经设置好了:
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
}