3

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

4

1 回答 1

0

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

于 2017-04-25T08:41:58.200 回答