I would like to standardize my java code style as per Google Java Style Guide. I downloaded intellij-java-google-style.xml, made a few custom tweaks and imported it in IntelliJ in the global IDE section:
Preferences... >> Editor >> Code Style >> gear icon >> Import Scheme >> IntelliJ code style xml
This applies the Code Style to the current project. However, existing IntelliJ projects keep their existing code style. I can see the new Google Style in the other projects' drop-down menus, but I have to manually reselect it for each project. My problem is I have hundreds of projects.
I would like to automatically select the new Google code style for all existing projects without having to go through the Preferences for each one. But how?
NOTE: I don't want to actually auto-format the code in my projects, that would be a git nightmare.