2

Node.js アプリケーションの開発に Visual Studio Code を使用しています。エディターでインデント スペースを構成するためのドキュメントを調べましたが、見つかりませんでした。私は Sublime Text を使ったことがあるので、そのオプションには慣れています。

この方法で Visual Studio Code の .editorconfig ファイルを構成するにはどうすればよいですか?

4

2 に答える 2

5

https://github.com/editorconfig/editorconfig-vscodeで .editorconfig サポート用のプラグインを入手できます。

于 2015-11-24T21:20:54.940 に答える
1

に移動してFile -> Preferences -> User Settings|Workspace Settings、このようなコードを追加します

{
  ...
  "editor.tabSize": 2, // Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
  "editor.insertSpaces": true, // Controls if the editor will insert spaces for tabs. Accepted values:  "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
  ...
}
于 2015-07-28T13:25:45.300 に答える