Sha256: f814ea0afe9adb9b14575f73aba8bd33ce0a7fcf10ef829ba4bac46a83a461bf
Contents?: true
Size: 1.5 KB
Versions: 2
Compression:
Stored size: 1.5 KB
Contents
require_relative 'smell_configuration' require_relative 'smell_detector' require_relative 'smell_warning' module Reek module Smells # # A Long Parameter List occurs when a method has more than one # or two parameters, or when a method yields more than one or # two objects to an associated block. # # Currently +LongParameterList+ reports any method or block with too # many parameters. # # See {file:docs/Long-Parameter-List.md} for details. class LongParameterList < 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, SmellConfiguration::OVERRIDES_KEY => { 'initialize' => { MAX_ALLOWED_PARAMS_KEY => 5 } } ) end # # Checks the number of parameters in the given method. # # @return [Array<SmellWarning>] # def inspect(ctx) max_allowed_params = value(MAX_ALLOWED_PARAMS_KEY, ctx, DEFAULT_MAX_ALLOWED_PARAMS) exp = ctx.exp count = exp.arg_names.length return [] if count <= max_allowed_params [smell_warning( context: ctx, lines: [exp.line], message: "has #{count} parameters", parameters: { count: count })] end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
reek-3.11 | lib/reek/smells/long_parameter_list.rb |
reek-3.10.2 | lib/reek/smells/long_parameter_list.rb |