Skip to content

Files

Latest commit

 

History

History
30 lines (21 loc) · 403 Bytes

Wrapping.md

File metadata and controls

30 lines (21 loc) · 403 Bytes

Pattern: Missing newline

Issue: -

Description

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
)

Further Reading