Sha256: 38fae56ff05e670c3bcc5719ac1ddf54ad8284c1bcdbd56fdca08b474174b249
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 KB
Contents
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. # @api private 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' DEFAULT_MAX_ALLOWED_PARAMS = 3 def self.smell_category 'LongParameterList' end 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>] # def examine_context(method_ctx) max_allowed_params = value(MAX_ALLOWED_PARAMS_KEY, method_ctx, DEFAULT_MAX_ALLOWED_PARAMS) method_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 SmellWarning.new self, context: method_ctx.full_name, lines: [yield_node.line], message: "yields #{count} parameters", parameters: { count: count } end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
reek-3.3.1 | lib/reek/smells/long_yield_list.rb |
reek-3.3.0 | lib/reek/smells/long_yield_list.rb |
reek-3.2 | lib/reek/smells/long_yield_list.rb |