google / google-java-format

Reformats Java source code to comply with Google Java Style.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IntelliJ plugin ignores @Formatter:off/on

SebHo0 opened this issue · comments

What happened?

The IntelliJ plugin ignores formatter guards (e.g. @Formatter:off/on) even though IntelliJ itself is setup to respect it.

What did you want to happen?

Do not overwrite the formatter guard settings (or at least provide a settings option to respect those).

The idea is that if you opt into Google Java Format, you're opting out of those "magic comments".
See https://github.com/google/google-java-format/wiki/FAQ#why-cant-i-use-magic-comments-to-disable-formatting-for-certain-sections-of-code

Thank you for the quick reply.

I really wonder why this seems to be such a rare issue for the users of the plugin.
Anyhow, the plugin without this feature does not seem to be the 100% perfect solution in our case.

FYI: In our project, we would like to protect some concatenated strings which build up some kind of sql query from rearrangement to keep it more human readable.