Sha256: dd86a025752d95768ac017e625316c55885bf08fcb861bdf89770fde2a796640
Contents?: true
Size: 658 Bytes
Versions: 128
Compression:
Stored size: 658 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # Checks for comma (,) not followed by some kind of space. # # @example # # # bad # [1,2] # { foo:bar,} # # # good # [1, 2] # { foo:bar, } class SpaceAfterComma < Base include SpaceAfterPunctuation extend AutoCorrector def space_style_before_rcurly cfg = config.for_cop('Layout/SpaceInsideHashLiteralBraces') cfg['EnforcedStyle'] || 'space' end def kind(token) 'comma' if token.comma? end end end end end
Version data entries
128 entries across 120 versions & 13 rubygems