Sha256: ff8b4fa8a7b5b42dbdb0c6e637b64e6edccdfd43f5b7599d412fc4308e7d47b5
Contents?: true
Size: 309 Bytes
Versions: 24
Compression:
Stored size: 309 Bytes
Contents
# encoding: utf-8 module RuboCop module Cop module Style # Checks for comma (,) not followed by some kind of space. class SpaceAfterComma < Cop include SpaceAfterPunctuation def kind(token) 'comma' if token.type == :tCOMMA end end end end end
Version data entries
24 entries across 24 versions & 2 rubygems