-
Notifications
You must be signed in to change notification settings - Fork 520
Open
Labels
ParkedIssue is not likely to be solved or has no clear resolution yetIssue is not likely to be solved or has no clear resolution yet
Description
Given code below:
@ExperimentalSerializationApi
public abstract class AbstractDecoder : Decoder, CompositeDecoder {
}
Supressing the class-signature
rule on CompositeDecoder
with ktlint-intellij-plugin
leads to code like:
@ExperimentalSerializationApi
public abstract class AbstractDecoder : Decoder, @Suppress("ktlint:standard:class-signature")
CompositeDecoder {
It resolves the problem for CompositeDecoder
but not for Decoder
. The suppression annotation should be at the class instead:
@ExperimentalSerializationApi
@Suppress("ktlint:standard:class-signature")
public abstract class AbstractDecoder : Decoder, CompositeDecoder {
ievgen-kapinos
Metadata
Metadata
Assignees
Labels
ParkedIssue is not likely to be solved or has no clear resolution yetIssue is not likely to be solved or has no clear resolution yet