Sha256: f1c6473ada52cba5bf4867f7e25b1c9bfd3d526776fed3067114157ee0125f2f

Contents?: true

Size: 851 Bytes

Versions: 137

Compression:

Stored size: 851 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? && !before_semicolon?(token)
        end

        private

        def before_semicolon?(token)
          tokens = processed_source.tokens

          tokens[tokens.index(token) + 1].semicolon?
        end
      end
    end
  end
end

Version data entries

137 entries across 137 versions & 13 rubygems

Version Path
rubocop-1.71.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.70.0 lib/rubocop/cop/layout/space_after_comma.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.69.2 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.69.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.69.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.68.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.67.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.66.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.66.0 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.65.1 lib/rubocop/cop/layout/space_after_comma.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.65.0 lib/rubocop/cop/layout/space_after_comma.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.64.1 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.63.4 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.63.3 lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.63.2 lib/rubocop/cop/layout/space_after_comma.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/layout/space_after_comma.rb
rubocop-1.63.1 lib/rubocop/cop/layout/space_after_comma.rb