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

Version Path
rubocop-1.40.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.39.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.38.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.37.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.37.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.36.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.35.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.35.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.34.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.34.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.33.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.32.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.31.2 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.31.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.31.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.30.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.30.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.29.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.29.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.28.2 lib/rubocop/cop/layout/space_after_comma.rb