web-dev-qa-db-ja.com

Visual Studioコードのeditorconfig

私のプロジェクトには次の内容の.editorconfigファイルがあります:

[*.{js}]
charset = utf-8
indent_style = space
indent_size = 4

これは私のVSコードが4つのスペースを持つインデントスタイルのスペースを使用することを強制するだろうと思いました。

インストール済みEditorConfig for vs code拡張子のリストからの拡張子。

しかし、まだ何もありません。新しく作成したファイルは、構成されたスペーススタイルを自動的に設定しません。何が問題ですか?

8
croraf

私は解決策を見つけたと思います。 VSCodeのフォルダー構造サイドバーを右クリックして.editorconfigを作成し、Generate .editorconfigを選択すると(プラグインに作成させる)、機能します。

ファイルの下の空の領域をクリックします。

enter image description here

4
croraf

試す

root = true
[*.js]
indent_style = space
indent_size = 4
charset = utf-8
4
londox

VS Codeはeditorconfigを使用するためにプラグインを必要とするため、プラグインをインストールする必要があります

2
Mickey Puri

これを試すこともできます。必要に応じてスペースに変更できます。

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = tab
indent_size = 2

[*.{js,txt,md,css,html,php,py,json,yml,sass,pug}]
indent_style = tab
indent_size = 2

[*.{diff,md}]
trim_trailing_whitespace = false
0
BrahimS