私のプロジェクトには次の内容の.editorconfigファイルがあります:
[*.{js}]
charset = utf-8
indent_style = space
indent_size = 4
これは私のVSコードが4つのスペースを持つインデントスタイルのスペースを使用することを強制するだろうと思いました。
インストール済みEditorConfig for vs code
拡張子のリストからの拡張子。
しかし、まだ何もありません。新しく作成したファイルは、構成されたスペーススタイルを自動的に設定しません。何が問題ですか?
試す
root = true
[*.js]
indent_style = space
indent_size = 4
charset = utf-8
VS Codeはeditorconfigを使用するためにプラグインを必要とするため、プラグインをインストールする必要があります
これを試すこともできます。必要に応じてスペースに変更できます。
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