Sha256: 9576e9d278c7a628cb49aa33866dedc0fbe148015a32434d182177eb59ca201b
Contents?: true
Size: 1.42 KB
Versions: 5
Compression:
Stored size: 1.42 KB
Contents
# frozen_string_literal: true require_relative 'smell_detector' require_relative 'smell_warning' module Reek module Smells # # 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 < SmellDetector # 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:FeatureEnvy # :reek:DuplicateMethodCall: { max_calls: 2 } def inspect(ctx) max_allowed_params = value(MAX_ALLOWED_PARAMS_KEY, ctx, DEFAULT_MAX_ALLOWED_PARAMS) ctx.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: ctx, lines: [yield_node.line], message: "yields #{count} parameters", parameters: { count: count }) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems