Pattern: Space after ,
Issue: -
Checks for comma (,
) not followed by some kind of space.
# bad
1,2
{ foo:bar,}
# good
1, 2
{ foo:bar, }
Pattern: Space after ,
Issue: -
Checks for comma (,
) not followed by some kind of space.
# bad
1,2
{ foo:bar,}
# good
1, 2
{ foo:bar, }