class RuboCop::Cop::Metrics::BlockLength

def on_block(node)

def on_block(node)
  return if excluded_method?(node)
  return if node.class_constructor?
  check_code_length(node)
end