Sha256: b1a0399a0f8d4004e6a19374ac3934400073d89142ef35d835f3ea42465c0e43

Contents?: true

Size: 1.48 KB

Versions: 3

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Metrics
      # This cop checks if the length a module exceeds some maximum value.
      # Comment lines can optionally be ignored.
      # The maximum allowed length is configurable.
      #
      # You can set literals you want to fold with `CountAsOne`.
      # Available are: 'array', 'hash', and 'heredoc'. Each literal
      # will be counted as one line regardless of its actual size.
      #
      # @example CountAsOne: ['array', 'heredoc']
      #
      #   module M
      #     ARRAY = [         # +1
      #       1,
      #       2
      #     ]
      #
      #     HASH = {          # +3
      #       key: 'value'
      #     }
      #
      #     MSG = <<~HEREDOC  # +1
      #       Heredoc
      #       content.
      #     HEREDOC
      #   end                 # 5 points
      #
      class ModuleLength < Cop
        include TooManyLines

        def on_module(node)
          check_code_length(node)
        end

        def on_casgn(node)
          module_definition?(node) do
            check_code_length(node)
          end
        end

        private

        def_node_matcher :module_definition?, <<~PATTERN
          (casgn nil? _ (block (send (const {nil? cbase} :Module) :new) ...))
        PATTERN

        def message(length, max_length)
          format('Module has too many lines. [%<length>d/%<max>d]',
                 length: length,
                 max: max_length)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubocop-0.88.0 lib/rubocop/cop/metrics/module_length.rb
rubocop-0.87.1 lib/rubocop/cop/metrics/module_length.rb
rubocop-0.87.0 lib/rubocop/cop/metrics/module_length.rb