Sha256: 189c973fffae966932950ec9f01590580a77442cd1d240e44334f3d8becce437

Contents?: true

Size: 1.57 KB

Versions: 21

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for uses of numbered parameter assignment.
      # It emulates the following warning in Ruby 2.7:
      #
      #   % ruby -ve '_1 = :value'
      #   ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-darwin19]
      #   -e:1: warning: `_1' is reserved for numbered parameter; consider another name
      #
      # Assigning to a numbered parameter (from `_1` to `_9`) causes an error in Ruby 3.0.
      #
      #   % ruby -ve '_1 = :value'
      #   ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin19]
      #   -e:1: _1 is reserved for numbered parameter
      #
      # NOTE: The parametered parameters are from `_1` to `_9`. This cop checks `_0`, and over `_10`
      # as well to prevent confusion.
      #
      # @example
      #
      #   # bad
      #   _1 = :value
      #
      #   # good
      #   non_numbered_parameter_name = :value
      #
      class NumberedParameterAssignment < Base
        NUM_PARAM_MSG = '`_%<number>s` is reserved for numbered parameter; consider another name.'
        LVAR_MSG = '`_%<number>s` is similar to numbered parameter; consider another name.'
        NUMBERED_PARAMETER_RANGE = (1..9).freeze

        def on_lvasgn(node)
          lhs, _rhs = *node
          return unless /\A_(\d+)\z/ =~ lhs

          number = Regexp.last_match(1).to_i
          template = NUMBERED_PARAMETER_RANGE.include?(number) ? NUM_PARAM_MSG : LVAR_MSG

          add_offense(node, message: format(template, number: number))
        end
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 4 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/numbered_parameter_assignment.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.29.1 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.29.0 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.28.2 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.28.1 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.28.0 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.27.0 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.26.1 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.26.0 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.25.1 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.25.0 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.24.1 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.24.0 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.23.0 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.22.3 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.22.2 lib/rubocop/cop/lint/numbered_parameter_assignment.rb
rubocop-1.22.1 lib/rubocop/cop/lint/numbered_parameter_assignment.rb