Android Studio中有一个选项可以启用EditorConfig支持(defaultsettings-> codingstyle对话框),但不确定其工作方式。能否让我知道如何将.editorconfig文件集成到Andriod Studio项目中?

最佳答案

网站EditorConfig.org很好地说明了如何进行设置。 Android Studio具有内置功能,因此无需添加插件或设置Android Studio。

  • 在项目的根目录中添加.editorconfig文件(如EditorConfig.org所述)
  • 启用EditorConfig支持(SettingsEditorCode StyleEnable EditorConfig support)

  • 注意:

    编辑:
    我建议从以下几方面入手,并在您的团队认为合适的情况下进行调整:
    # 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
    

    关于java - Android Studio中的EditorConfig,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44694132/

    10-10 09:45