Android Studio 中的 EditorConfig

2022-09-03 00:30:43

Android工作室中有一个选项可以启用EditorConfig支持(默认设置>编码样式对话框),但不确定它是如何工作的。你能告诉我如何将.editorconfig文件集成到Andriod Studio项目中吗?


答案 1

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

  1. 将文件添加到项目的根目录中(如 EditorConfig.org.editorconfig)
  2. 启用编辑器配置支持 ( → → →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

答案 2

推荐