Metadata

ID: kotlin-code-style/no-empty-lead-line-class

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

class Foo {

    val foo = "foo"
}

Compliant Code Examples

class Foo {
    val bar = "bar"
    val foo = "foo"
}
PREVIEWING: ava.silver/azints-3246/replace-the-old-blob-forwarder-with-the-new-one