14

Android Studio 中有一个选项可以启用 EditorConfig 支持(defaultsettings->codingstyle 对话框),但不确定它是如何工作的。请告诉我如何将 .editorconfig 文件集成到 Andriod Studio 项目中?

4

1 回答 1

27

网站EditorConfig.org对如何设置它有很好的解释。Android Studio 已内置,因此无需添加插件或设置 Android Studio,只需..

  1. .editorconfig在项目的根目录中添加您的文件(如EditorConfig.org所述)
  2. 启用 EditorConfig 支持 ( SettingsEditorCode StyleEnable 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 回答