web-dev-qa-db-ja.com

VSコードのEditorConfigが機能しない

VS Codeをエディターとして使用します。 .editorconfig内にフォーマット設定を含むファイル。私たちはすべて、エディターでextenion EditorConfigを使用して、HTMLおよびCSS全般をフォーマットします。ここからVS Codeの拡張機能EditorConfigをインストールしました: https://github.com/editorconfig/editorconfig-vscode

.editorconfigファイルは次のようになります。

# This is the top-most .editorconfig file (do not search in parent directories)
root = true

### All files
[*]
# Force charset utf-8
charset = utf-8
# Indentation
indent_style = tab
indent_size = 4
# line breaks and whitespace
insert_final_newline = true
trim_trailing_whitespace = true
# end_of_line = lf

### Frontend files
[*.{css,scss,less,js,json,ts,sass,php,html,hbs,mustache,phtml,html.twig}]

### Markdown
[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false

### YAML
[*.yml]
indent_style = space
indent_size = 2

### Specific files
[{package,bower}.json]
indent_style = space
indent_size = 2

キーボードショートカット、設定などが見つかりません。私の拡張機能を取得する方法は.editorconfigファイル?

20
webta.st.ic

自分のソリューション:

私が抱えていた問題は、editorconfigに拡張子vscodeを追加したが、そのためにnpm packageをインストールしなかったことでした。したがって、vscodeのみに拡張機能を追加するには、パッケージをインストールする必要があるため、実行することはできません。

npm packageグローバルを次のようにインストールしました:npm install -g editorconfig

その後、拡張機能を追加して有効にしました。今では完璧に動作します。

必要なnpmパッケージへのリンクは次のとおりです。 https://www.npmjs.com/package/editorconfig

Vscodeに必要な拡張子へのリンクは次のとおりです。 https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig

27
webta.st.ic