Sha256: 3f689c2e2dfe53543067c3adb548a2c7284cd05b71339527cf8cacb0deebb1f7
Contents?: true
Size: 823 Bytes
Versions: 6776
Compression:
Stored size: 823 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'.freeze 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
6,776 entries across 6,770 versions & 24 rubygems