Android Studio 中的 EditorConfig
Posted
技术标签:
【中文标题】Android Studio 中的 EditorConfig【英文标题】:EditorConfig in Android Studio 【发布时间】:2017-11-25 10:08:01 【问题描述】:android Studio 中有一个选项可以启用 EditorConfig 支持(defaultsettings->codingstyle 对话框),但不确定它是如何工作的。请告诉我如何将 .editorconfig 文件集成到 Andriod Studio 项目中?
【问题讨论】:
【参考方案1】: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
【讨论】:
我对其进行了更新以提供建议的.editorconfig
文件起点。以上是关于Android Studio 中的 EditorConfig的主要内容,如果未能解决你的问题,请参考以下文章
无法按照 Google“入门”页面中的说明在 Android Studio 中添加地图; Android Studio 报错
android studio application怎么创建