gpt4 book ai didi

editorconfig - 可以忽略/排除来自.editorconfig的文件/文件夹吗?

转载 作者:行者123 更新时间:2023-12-03 20:20:25 33 4
gpt4 key购买 nike

是否可以从.editorconfig中忽略/排除文件/文件夹?

原因:我有一个包含第三方文件的/vendor文件夹。我不希望该文件夹继承任何.editorconfig配置。

我找到了EditorConfig-Properties页面,似乎没有排除文件夹的属性。也许有黑客使之成为可能?

当前配置

root = true

[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab

最佳答案

忽略/vendor文件夹的另一种解决方案:

  • 匹配您要忽略的路径
  • unset设置为要忽略的属性

  • 例如,如果您有:
  • /index.html
  • /供应商
  • /.editorconfig

  • 您可以匹配 vendor.editorconfig目录中的所有文件,并忽略所有属性(设置为IDE的默认设置):
    # top-most EditorConfig file
    root = true

    # Ignore paths
    [/vendor/**]
    charset = unset
    end_of_line = unset
    insert_final_newline = unset
    trim_trailing_whitespace = unset
    indent_style = unset
    indent_size = unset

    关于editorconfig - 可以忽略/排除来自.editorconfig的文件/文件夹吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30310396/

    33 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com