Sha256: b6c67eaae2b782fb936523bed5be469e8dffdecd8c85a7f59d000a932855cd9f
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 KB
Contents
# frozen_string_literal: true require_relative 'smell_detector' require_relative 'smell_warning' module Reek module Smells # # A Large Class is a class or module that has a large number of # instance variables, methods or lines of code. # # +TooManyInstanceVariables' reports classes having more than a # configurable number of instance variables. # # See {file:docs/Too-Many-Instance-Variables.md} for details. class TooManyInstanceVariables < SmellDetector # The name of the config field that sets the maximum number of instance # variables permitted in a class. MAX_ALLOWED_IVARS_KEY = 'max_instance_variables'.freeze DEFAULT_MAX_IVARS = 4 def self.contexts [:class] end def self.default_config super.merge( MAX_ALLOWED_IVARS_KEY => DEFAULT_MAX_IVARS, EXCLUDE_KEY => [] ) end # # Checks +klass+ for too many instance variables. # # @return [Array<SmellWarning>] # def inspect(ctx) max_allowed_ivars = value(MAX_ALLOWED_IVARS_KEY, ctx) count = ctx.local_nodes(:ivasgn).map { |ivasgn| ivasgn.children.first }.uniq.length return [] if count <= max_allowed_ivars [smell_warning( context: ctx, lines: [ctx.exp.line], message: "has at least #{count} instance variables", parameters: { count: count })] end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
reek-4.1.0 | lib/reek/smells/too_many_instance_variables.rb |
reek-4.0.5 | lib/reek/smells/too_many_instance_variables.rb |
reek-4.0.4 | lib/reek/smells/too_many_instance_variables.rb |