从云端自动更新 Intellij IDEA 代码风格
Autoupdate Intellij IDEA code style from cloud
我们需要为项目中的所有开发人员提供通用的代码风格配置。如何调整 Intellij IDEA 以从云端自动更新代码样式配置?
例如:将 codeStyleSettings.xml 添加到 git 存储库。当 codeStyleSettings.xml 的新更改从存储库中提取时,更新了项目代码样式的本地配置。
我在那里找到了答案 - How to share Code Style settings between developers in IntelliJ。
Code Style可以是copied to project,保存在.idea/codeStyles中。接下来需要在 gitignore 中排除忽略这个文件夹。
我们需要为项目中的所有开发人员提供通用的代码风格配置。如何调整 Intellij IDEA 以从云端自动更新代码样式配置? 例如:将 codeStyleSettings.xml 添加到 git 存储库。当 codeStyleSettings.xml 的新更改从存储库中提取时,更新了项目代码样式的本地配置。
我在那里找到了答案 - How to share Code Style settings between developers in IntelliJ。 Code Style可以是copied to project,保存在.idea/codeStyles中。接下来需要在 gitignore 中排除忽略这个文件夹。