Sha256: c4cb7717b44d06a26eb6e5c8f1cdf0d54675fe060ea9b65c293cab43c4c0c6e7
Contents?: true
Size: 690 Bytes
Versions: 15
Compression:
Stored size: 690 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) 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
15 entries across 15 versions & 2 rubygems