At the moment, the formatter formats things like this ```java enum State { @JsonProperty("open") OPEN, @JsonProperty("closed") CLOSED } ``` Something like this would be better: ```java enum State { @JsonProperty("open") OPEN, @JsonProperty("closed") CLOSED } ```