Android Studio 中有一个选项可以启用 EditorConfig 支持(defaultsettings->codingstyle 对话框),但不确定它是如何工作的。请告诉我如何将 .editorconfig 文件集成到 Andriod Studio 项目中?
问问题
6279 次
1 回答
27
网站EditorConfig.org对如何设置它有很好的解释。Android Studio 已内置,因此无需添加插件或设置 Android Studio,只需..
.editorconfig
在项目的根目录中添加您的文件(如EditorConfig.org所述)- 启用 EditorConfig 支持 (
Settings
→Editor
→Code Style
→Enable EditorConfig support
)
如果到达根文件路径或找到具有 root=true 的 EditorConfig 文件,将停止搜索 .editorconfig 文件。
编辑:
我建议从这些方面开始,并根据您的团队认为合适的方式对其进行调整:
# indicate this is the root of the project
root = true
[*.{kt,java,xml,gradle,md}]
charset = utf-8
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
于 2017-10-22T01:23:50.837 回答