web-dev-qa-db-ja.com

.editorconfigからファイル/フォルダーを無視/除外することは可能ですか?

.editorconfigからファイル/フォルダーを無視/除外することは可能ですか?

理由:サードパーティのファイルを含む/vendorフォルダがあります。フォルダーに.editorconfig構成を継承させたくありません。

EditorConfig-Properties ページが見つかりましたが、フォルダを除外するプロパティがないようです。多分それを可能にするためのハックがありますか?

現在の構成

root = true

[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
16
iDev247

@ iDev247、/vendorフォルダーを無視する別の解決策:

  • 無視したいパスに一致する
  • 無視したいプロパティにnoneを設定します

たとえば、次の場合:

/index.html
/vendor
/.editorconfig

.editorconfigvendorディレクトリ内のすべてのファイルを照合し、すべてのプロパティを無視することができます(IDEのデフォルトに設定)。

# top-most EditorConfig file
root = true

# Ignore paths
[/vendor/**]
charset = none
end_of_line = none
insert_final_newline = none
trim_trailing_whitespace = none
indent_style = none
indent_size = none

実際には、「無効な」値を設定でき、プロパティは無視する必要があります(IDEの/エディターのデフォルトに復元されます)

詳しくは:

16
Danail

.editorconfigvender/ファイルを簡単なroot = true行で作成できます。

9
xuhdev