Skip to content

Improve formatting of annotated enum values #393

Open
@wilkinsona

Description

@wilkinsona

At the moment, the formatter formats things like this

enum State {

    @JsonProperty("open")
    OPEN, @JsonProperty("closed")
    CLOSED

}

Something like this would be better:

enum State {

    @JsonProperty("open")
    OPEN,

    @JsonProperty("closed")
    CLOSED

}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions