Metadata

ID: kotlin-code-style/multiline-if-else

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Arguments

  • foo: Blah

Non-Compliant Code Examples

if (true)
    return 0
else
    return 1

Compliant Code Examples

if (true) {
    return 0
} else {
    return 1
}
PREVIEWING: ava.silver/azints-3246/replace-the-old-blob-forwarder-with-the-new-one