Sha256: cfe9c2a470464adebcf51ffe4e515148c95c878bb3c52d203e850fb5dbf3ce96

Contents?: true

Size: 560 Bytes

Versions: 19

Compression:

Stored size: 560 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Metrics
      # This cop checks if the length a class exceeds some maximum value.
      # Comment lines can optionally be ignored.
      # The maximum allowed length is configurable.
      class ClassLength < Cop
        include ClassishLength

        def on_class(node)
          check_code_length(node)
        end

        private

        def message(length, max_length)
          format('Class has too many lines. [%d/%d]', length, max_length)
        end
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/metrics/class_length.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/metrics/class_length.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/metrics/class_length.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/metrics/class_length.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/metrics/class_length.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/metrics/class_length.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/metrics/class_length.rb
rubocop-0.51.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.50.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.49.1 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.49.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.48.1 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.48.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.47.1 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.47.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.46.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.45.0 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.44.1 lib/rubocop/cop/metrics/class_length.rb
rubocop-0.44.0 lib/rubocop/cop/metrics/class_length.rb