Sha256: 5ef146fe6733d61e2e93f44399086d6ebe6d9e73d49513dbad2490afd22def58

Contents?: true

Size: 1.92 KB

Versions: 109

Compression:

Stored size: 1.92 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', 'heredoc', 'method_call']
      #
      #   class Foo
      #     ARRAY = [         # +1
      #       1,
      #       2
      #     ]
      #
      #     HASH = {          # +3
      #       key: 'value'
      #     }
      #
      #     MSG = <<~HEREDOC  # +1
      #       Heredoc
      #       content.
      #     HEREDOC
      #
      #     foo(              # +1
      #       1,
      #       2
      #     )
      #   end                 # 6 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

          if parent&.assignment?
            block_node = parent.children[1]
          elsif parent&.parent&.masgn_type?
            block_node = parent.parent.children[1]
          else
            _scope, _name, block_node = *node
          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

109 entries across 109 versions & 9 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/metrics/class_length.rb
rubocop-1.65.1 lib/rubocop/cop/metrics/class_length.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/metrics/class_length.rb
rubocop-1.65.0 lib/rubocop/cop/metrics/class_length.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/metrics/class_length.rb
rubocop-1.64.1 lib/rubocop/cop/metrics/class_length.rb
rubocop-1.63.4 lib/rubocop/cop/metrics/class_length.rb
rubocop-1.63.3 lib/rubocop/cop/metrics/class_length.rb
rubocop-1.63.2 lib/rubocop/cop/metrics/class_length.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/metrics/class_length.rb
rubocop-1.63.1 lib/rubocop/cop/metrics/class_length.rb
rubocop-1.63.0 lib/rubocop/cop/metrics/class_length.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/metrics/class_length.rb
rubocop-1.62.1 lib/rubocop/cop/metrics/class_length.rb
rubocop-1.62.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-1.61.0 lib/rubocop/cop/metrics/class_length.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.2/lib/rubocop/cop/metrics/class_length.rb
rubocop-1.60.2 lib/rubocop/cop/metrics/class_length.rb
study_line-0.2.7 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/metrics/class_length.rb
study_line-0.2.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/cop/metrics/class_length.rb