We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
class-signature
CompositeDecoder
ktlint-intellij-plugin
@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:
Decoder
@ExperimentalSerializationApi @Suppress("ktlint:standard:class-signature") public abstract class AbstractDecoder : Decoder, CompositeDecoder {
The text was updated successfully, but these errors were encountered:
Insert suppression for class-signature, function-signature and parame…
1188519
…ter-list-wrapping at a class or function level Closes #2588
No branches or pull requests
Given code below:
Supressing the
class-signature
rule onCompositeDecoder
withktlint-intellij-plugin
leads to code like:It resolves the problem for
CompositeDecoder
but not forDecoder
. The suppression annotation should be at the class instead:The text was updated successfully, but these errors were encountered: