Is it possible to ignore / exclude file / folder from .editorconfig?
Cause. I have a /vendor folder with third-party files. I do not want the folder to inherit any of my .editorconfig configurations.
I found the EditorConfig-Properties page and it seems that there is no property to exclude folders. Maybe there is a hack to make this possible?
current configuration
root = true [*] end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true indent_style = tab
source share