【发布时间】:2016-07-21 10:43:48
【问题描述】:
所以我有一个这样的编辑器配置文件:
# 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 文件,但显然它不在顶级根目录中。这可能吗?
【问题讨论】:
标签: configuration config text-editor atom-editor editorconfig