是否可以忽略/排除.editorconfig中的文件/文件夹?
原因:我有一个包含第三方文件的/vendor
文件夹。我不希望该文件夹继承任何.editorconfig
个配置。
我找到了https://learn.jquery.com/events/event-delegation/页面,似乎没有要排除文件夹的属性。也许有一个黑客可以使它成为可能吗?
当前配置
root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab
答案 0 :(得分:8)
@ iDev247,另一种忽略/vendor
文件夹的解决方案:
none
设置为您要忽略的属性例如,如果你有:
/index.html
/vendor
/.editorconfig
您可以匹配vendor
中.editorconfig
目录中的所有文件,并忽略所有属性(设置为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的/编辑器默认值)
更多信息:
答案 1 :(得分:7)
您可以使用简单的.editorconfig
行在vender/
中创建root = true
个文件。