Sha256: d1f544131f3dfa29bfa4cb050641715c94dd2df9efe6d5fc2a008dcf6ba90c1c

Contents?: true

Size: 354 Bytes

Versions: 21

Compression:

Stored size: 354 Bytes

Contents

# encoding: utf-8

module RuboCop
  module Cop
    module Style
      # Checks for spaces inside square brackets.
      class SpaceInsideBrackets < Cop
        include SpaceInside

        def specifics
          [
            [:tLBRACK, :tLBRACK2],
            :tRBRACK,
            'square brackets'
          ]
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
rubocop-0.25.0 lib/rubocop/cop/style/space_inside_brackets.rb