Sha256: bea1adb42a4cb8afd7d5dc4524101eebc4b477b38a9c09d59e6e37bcfd985214
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true require_relative 'base_detector' module Reek module SmellDetectors # # A variant on LongParameterList that checks the number of items # passed to a block by a +yield+ call. # # See {file:docs/Long-Yield-List.md} for details. class LongYieldList < BaseDetector # The name of the config field that sets the maximum number of # parameters permitted in any method or block. MAX_ALLOWED_PARAMS_KEY = 'max_params'.freeze DEFAULT_MAX_ALLOWED_PARAMS = 3 def self.default_config super.merge MAX_ALLOWED_PARAMS_KEY => DEFAULT_MAX_ALLOWED_PARAMS end # # Checks the number of parameters in the given scope. # # @return [Array<SmellWarning>] # # :reek:DuplicateMethodCall: { max_calls: 2 } def sniff context.local_nodes(:yield).select do |yield_node| yield_node.args.length > max_allowed_params end.map do |yield_node| count = yield_node.args.length smell_warning( context: context, lines: [yield_node.line], message: "yields #{count} parameters", parameters: { count: count }) end end private def max_allowed_params value(MAX_ALLOWED_PARAMS_KEY, context) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems