Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: allow one-liner if/else as ternary operator

...

Put curly braces even around one-line if, else or loop statements:. The only exception is if you are using if/else as an one-line ternary operator.

Code Block
scala
scala
// Correct:
if (true) {
  println("Wow!")
}

// Correct:
if (true) statement1 else statement2

// Wrong:
if (true)
  println("Wow!")

...