class RuboCop::Cop::Layout::SpaceAfterComma

Checks for comma (‘,`) not followed by some kind of space.

@example

# bad
[1,2]
{ foo:bar,}

# good
[1, 2]
{ foo:bar, }