Pattern: Missing line break before first array element
Issue: -
This rule checks for a line break before the first element in a multi-line array.
# bad
[ :a,
:b]
# good
[
:a,
:b]
Pattern: Missing line break before first array element
Issue: -
This rule checks for a line break before the first element in a multi-line array.
# bad
[ :a,
:b]
# good
[
:a,
:b]