Sha256: 9e9354429ffef4bf77cf43499345d360c4e1971f649c091357ed250330a572f2

Contents?: true

Size: 1.18 KB

Versions: 192

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for numbered parameters.
      #
      # It can either restrict the use of numbered parameters to
      # single-lined blocks, or disallow completely numbered parameters.
      #
      # @example EnforcedStyle: allow_single_line (default)
      #   # bad
      #   collection.each do
      #     puts _1
      #   end
      #
      #   # good
      #   collection.each { puts _1 }
      #
      # @example EnforcedStyle: disallow
      #   # bad
      #   collection.each { puts _1 }
      #
      #   # good
      #   collection.each { |item| puts item }
      #
      class NumberedParameters < Base
        include ConfigurableEnforcedStyle
        extend TargetRubyVersion

        MSG_DISALLOW = 'Avoid using numbered parameters.'
        MSG_MULTI_LINE = 'Avoid using numbered parameters for multi-line blocks.'

        minimum_target_ruby_version 2.7

        def on_numblock(node)
          if style == :disallow
            add_offense(node, message: MSG_DISALLOW)
          elsif node.multiline?
            add_offense(node, message: MSG_MULTI_LINE)
          end
        end
      end
    end
  end
end

Version data entries

192 entries across 185 versions & 18 rubygems

Version Path
harbr-0.1.89 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.88 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.87 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.86 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.85 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.84 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.83 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.82 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.81 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.80 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.79 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.78 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.77 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.76 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.75 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.74 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.73 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.72 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.71 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.70 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb