Pattern: Missing line break before first hash element
Issue: -
This rule checks for a line break before the first element in a multi-line hash.
# bad
{ a: 1,
b: 2}
# good
{
a: 1,
b: 2 }
Pattern: Missing line break before first hash element
Issue: -
This rule checks for a line break before the first element in a multi-line hash.
# bad
{ a: 1,
b: 2}
# good
{
a: 1,
b: 2 }