Is it possible to ignore/exclude file/folder from .editorconfig?
Reason: I have a /vendor
folder with third party files. I don't want the folder to inherit any of my .editorconfig
configs.
I found the EditorConfig-Properties page and seems like there's no property to exclude folders. Maybe there's a hack to make it possible?
current config
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab