Sha256: 1d93c13c47d029b076927a9d160b3ade9f82b0dec110856f96c57e0d11c3c334
Contents?: true
Size: 896 Bytes
Versions: 42
Compression:
Stored size: 896 Bytes
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. class ModuleLength < Cop include ClassishLength 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? :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
42 entries across 31 versions & 5 rubygems