是否可以将editorconfig文件放在顶级根目录之外



所以我有一个编辑器配置文件,如下所示:

# Indent preferences
indent_style = space
indent_size = 2
# Do not change these
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = true

我的文件结构如下:

|-- src
|-- tools
|-- test
|-- config
    .editorconfig

正如你所看到的,我有一个配置目录,我想在那里保存所有与配置相关的东西。我希望.editorconfig文件能在整个项目中使用,但显然它不在顶级根目录中。这可能吗?

目前不可能:.editorconfig文件从根目录加载到每个目录级别的文件目录中。在config目录中支持这样的功能很容易把事情搞砸。

相关内容

  • 没有找到相关文章

最新更新