Sha256: c6070e7b97dde2a5d0a64b3da837c4d42cb40bcbf0c1f19953c19a3265a43ee1

Contents?: true

Size: 1.55 KB

Versions: 11

Compression:

Stored size: 1.55 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Naming
      # This cop checks block parameter names for how descriptive they
      # are. It is highly configurable.
      #
      # The `MinNameLength` config option takes an integer. It represents
      # the minimum amount of characters the name must be. Its default is 1.
      # The `AllowNamesEndingInNumbers` config option takes a boolean. When
      # set to false, this cop will register offenses for names ending with
      # numbers. Its default is false. The `AllowedNames` config option
      # takes an array of whitelisted names that will never register an
      # offense. The `ForbiddenNames` config option takes an array of
      # blacklisted names that will always register an offense.
      #
      # @example
      #   # bad
      #   bar do |varOne, varTwo|
      #     varOne + varTwo
      #   end
      #
      #   # With `AllowNamesEndingInNumbers` set to false
      #   foo { |num1, num2| num1 * num2 }
      #
      #   # With `MinParamNameLength` set to number greater than 1
      #   baz { |a, b, c| do_stuff(a, b, c) }
      #
      #   # good
      #   bar do |thud, fred|
      #     thud + fred
      #   end
      #
      #   foo { |speed, distance| speed * distance }
      #
      #   baz { |age, height, gender| do_stuff(age, height, gender) }
      class UncommunicativeBlockParamName < Cop
        include UncommunicativeName

        def on_block(node)
          return unless node.arguments?
          check(node, node.arguments)
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
rubocop-0.58.2 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.58.1 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.58.0 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.57.2 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.57.1 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.57.0 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.56.0 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.55.0 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.54.0 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb
rubocop-0.53.0 lib/rubocop/cop/naming/uncommunicative_block_param_name.rb