Pattern: Missing newline
Issue: -
Checks for missing newlines (for example between parentheses of a multi-line function call).
Example of incorrect code:
val x = f(
a,
b,
c)
Example of correct code:
val x = f(
a,
b,
c
)
Pattern: Missing newline
Issue: -
Checks for missing newlines (for example between parentheses of a multi-line function call).
Example of incorrect code:
val x = f(
a,
b,
c)
Example of correct code:
val x = f(
a,
b,
c
)