Skip to content

Files

Latest commit

 

History

History
28 lines (20 loc) · 371 Bytes

Layout-MultilineArrayLineBreaks.md

File metadata and controls

28 lines (20 loc) · 371 Bytes

Pattern: Missing line break for multi-line array

Issue: -

Description

Ensures that each item in a multi-line array starts on a separate line.

Examples

# bad
[
  a, b,
  c
]

# good
[
  a,
  b,
  c
]

Further Reading