Android Studio 中的 EditorConfig
2022-09-03 00:30:43
Android工作室中有一个选项可以启用EditorConfig支持(默认设置>编码样式对话框),但不确定它是如何工作的。你能告诉我如何将.editorconfig文件集成到Andriod Studio项目中吗?
Android工作室中有一个选项可以启用EditorConfig支持(默认设置>编码样式对话框),但不确定它是如何工作的。你能告诉我如何将.editorconfig文件集成到Andriod Studio项目中吗?
网站 EditorConfig.org 很好地解释了如何设置它。Android Studio内置了它,因此无需添加插件或设置Android Studio。
.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