Sha256: acbc45a5512ee41717a0236da1b3fadf41c0eb8dfdbed8ce637fcbabc7409773
Contents?: true
Size: 517 Bytes
Versions: 11
Compression:
Stored size: 517 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Metrics # This cop checks if the length of a block exceeds some maximum value. # Comment lines can optionally be ignored. # The maximum allowed length is configurable. class BlockLength < Cop include TooManyLines LABEL = 'Block'.freeze def on_block(node) check_code_length(node) end private def cop_label LABEL end end end end end
Version data entries
11 entries across 11 versions & 2 rubygems