Some ktlint rule is bothering me by pointlessly wr...
# ktlint
z
Some ktlint rule is bothering me by pointlessly wrapping the extended interfaces like this
Copy code
public class Hook(public override val replyUserData: Long) : MpvEvent, Reply
into this
Copy code
public class Hook(public override val replyUserData: Long) :
    MpvEvent,
    Reply
I cannot figure out what rule is doing this. There really should be an easier way to just quickly see a list of violations in the IDE
r
Does your configuration include this attribute?
ktlint_standard_class-signature
Can you try disabling it?
Copy code
ktlint_standard_class-signature = disabled