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