Sha256: c417502a0a8b5de760a3722985da864da975d86a2d9ceb232212dc1ceadd9322
Contents?: true
Size: 1.98 KB
Versions: 2
Compression:
Stored size: 1.98 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Metrics # Checks if the length of a class exceeds some maximum value. # Comment lines can optionally be ignored. # The maximum allowed length is configurable. # # You can set constructs you want to fold with `CountAsOne`. # # Available are: 'array', 'hash', 'heredoc', and 'method_call'. # Each construct will be counted as one line regardless of its actual size. # # NOTE: This cop also applies for `Struct` definitions. # # @example CountAsOne: ['array', 'hash', 'heredoc', 'method_call'] # # class Foo # ARRAY = [ # +1 # 1, # 2 # ] # # HASH = { # +1 # key: 'value' # } # # MSG = <<~HEREDOC # +1 # Heredoc # content. # HEREDOC # # foo( # +1 # 1, # 2 # ) # end # 4 points # class ClassLength < Base include CodeLength def on_class(node) check_code_length(node) end def on_sclass(node) return if node.each_ancestor(:class).any? on_class(node) end def on_casgn(node) parent = node.parent block_node = if parent&.assignment? parent.expression elsif parent&.parent&.masgn_type? parent.parent.expression else node.expression end return unless block_node.respond_to?(:class_definition?) && block_node.class_definition? check_code_length(block_node) end private def message(length, max_length) format('Class has too many lines. [%<length>d/%<max>d]', length: length, max: max_length) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-1.69.1 | lib/rubocop/cop/metrics/class_length.rb |
rubocop-1.69.0 | lib/rubocop/cop/metrics/class_length.rb |