class RuboCop::Cop::Layout::FirstArrayElementIndentation
def on_send(node)
def on_send(node) return if style != :consistent && enforce_first_argument_with_fixed_indentation? each_argument_node(node, :array) do |array_node, left_parenthesis| check(array_node, left_parenthesis) end end