配置vscode json格式空间

时间:2017-02-08 17:55:03

标签: json visual-studio-code code-formatting

我想配置vscode以使用2个缩进空格格式化我的JSON对象,而不是默认情况下为4。我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

安装编辑器配置插件。

ext install EditorConfig

使用以下内容将.editorconfig文件添加到项目根目录:

[*.json]
indent_style = space
indent_size = 2

另见:

https://github.com/editorconfig/editorconfig-vscode

http://editorconfig.org/

答案 1 :(得分:0)

在VSCode的settings.json中粘贴这一行,你们都已经设置好了:

"[json]": {
  "editor.insertSpaces": true,
  "editor.tabSize": 2
}