Sha256: 9e9354429ffef4bf77cf43499345d360c4e1971f649c091357ed250330a572f2

Contents?: true

Size: 1.18 KB

Versions: 195

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

195 entries across 188 versions & 19 rubygems

Version Path
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
harbr-0.1.69 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.68 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.67 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.66 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.65 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.64 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.63 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.62 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.61 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.60 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.59 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.58 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.57 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.56 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.55 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.54 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb
harbr-0.1.53 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/style/numbered_parameters.rb