Kotlin / kotlin-style-guide

Work-in-progress notes for the Kotlin style guide
288 stars 14 forks source link

Newline before `else` #30

Closed matklad closed 6 years ago

matklad commented 8 years ago

No new line

if (foo) {
    bar
} else {
    baz
}
matklad commented 8 years ago

new line:

if (foo) {
    bar
} 
else {
    baz
}
yole commented 6 years ago

The current style guide states that newlines before else and similar keywords are not used.