Hi folks, quick question before opening an issue. ...
# ktlint
g
Hi folks, quick question before opening an issue. Is it expected that the latest ktlint formats
Copy code
enum class MyEnum(@JsonValue val value: String) {
    VALUE_1("my_value_1"),
    VALUE_2("my_value_2"),
}
as
Copy code
enum class MyEnum(
    @JsonValue val value: String,
) {
    VALUE_1("my_value_1"),
    VALUE_2("my_value_2"),
}
because of
standard:parameter-list-wrapping
? Or is this somehow related to the annotation like in this issue?