Sha256: c379133c4bbedc23f438c5485de6a62c49bce0ac4a18270985068dd508b2ff88
Contents?: true
Size: 816 Bytes
Versions: 36
Compression:
Stored size: 816 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Metrics # This cop checks if the length of a method exceeds some maximum value. # Comment lines can optionally be ignored. # The maximum allowed length is configurable. class MethodLength < Cop include TooManyLines LABEL = 'Method' def on_def(node) excluded_methods = cop_config['ExcludedMethods'] return if excluded_methods.include?(String(node.method_name)) check_code_length(node) end alias on_defs on_def def on_block(node) return unless node.send_node.method_name == :define_method check_code_length(node) end private def cop_label LABEL end end end end end
Version data entries
36 entries across 19 versions & 2 rubygems