Sha256: fe63ed69287900612ec1ad15ac98e7e3153aab96b3c112daa50accc03046f538
Contents?: true
Size: 896 Bytes
Versions: 6790
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
6,790 entries across 6,784 versions & 25 rubygems