Skip to content

Files

Latest commit

 

History

History
24 lines (16 loc) · 383 Bytes

Layout-FirstArrayElementLineBreak.md

File metadata and controls

24 lines (16 loc) · 383 Bytes

Pattern: Missing line break before first array element

Issue: -

Description

This rule checks for a line break before the first element in a multi-line array.

Examples

# bad
[ :a,
  :b]

# good
[
  :a,
  :b]

Further Reading