可以忽略/排除.editorconfig中的文件/文件夹吗?

时间:2015-05-18 18:27:09

标签: editorconfig

是否可以忽略/排除.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

2 个答案:

答案 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个文件。