是否可以将editorconfig文件放在顶级根目录下?

时间:2016-07-21 10:43:48

标签: configuration config text-editor atom-editor editorconfig

所以我有一个这样的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文件,但显然它不在顶层根目录中。这可能吗?

1 个答案:

答案 0 :(得分:1)

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