Metadata

ID: kotlin-code-style/no-line-break-before-assignment

Language: Kotlin

Severity: Notice

Category: Code Style

Description

No description found

Non-Compliant Code Examples

val valA 
   = ""

Compliant Code Examples

val valA =
      ""