class RuboCop::Cop::Style::SpaceAfterComma

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

def kind(token)

def kind(token)
  'comma' if token.type == :tCOMMA
end