.editorconfigからファイル/フォルダーを無視/除外することは可能ですか?
理由:サードパーティのファイルを含む/vendor
フォルダがあります。フォルダーに.editorconfig
構成を継承させたくありません。
EditorConfig-Properties ページが見つかりましたが、フォルダを除外するプロパティがないようです。多分それを可能にするためのハックがありますか?
現在の構成
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
@ iDev247、/vendor
フォルダーを無視する別の解決策:
none
を設定しますたとえば、次の場合:
/index.html
/vendor
/.editorconfig
.editorconfig
のvendor
ディレクトリ内のすべてのファイルを照合し、すべてのプロパティを無視することができます(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の/エディターのデフォルトに復元されます)
詳しくは:
Node.jsでは、ignore
値を使用します: https://github.com/nodejs/node/commit/d63cceeb10b7b841479a6e92d18f9fc902afda72#diff-1e70daafb475c0ce3fef7d2728279182R34
EditorConfigリポジトリのコメント: https://github.com/editorconfig/editorconfig/issues/262#issuecomment-23053028
.editorconfig
にvender/
ファイルを簡単なroot = true
行で作成できます。