Node.js アプリケーションの開発に Visual Studio Code を使用しています。エディターでインデント スペースを構成するためのドキュメントを調べましたが、見つかりませんでした。私は Sublime Text を使ったことがあるので、そのオプションには慣れています。
この方法で Visual Studio Code の .editorconfig ファイルを構成するにはどうすればよいですか?
Node.js アプリケーションの開発に Visual Studio Code を使用しています。エディターでインデント スペースを構成するためのドキュメントを調べましたが、見つかりませんでした。私は Sublime Text を使ったことがあるので、そのオプションには慣れています。
この方法で Visual Studio Code の .editorconfig ファイルを構成するにはどうすればよいですか?
https://github.com/editorconfig/editorconfig-vscodeで .editorconfig サポート用のプラグインを入手できます。
に移動して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.
...
}