class RuboCop::Cop::Style::IndentArray

def on_array(node)

def on_array(node)
  left_bracket = node.loc.begin
  return if left_bracket.nil?
  first_pair = node.children.first
  check_first_pair(first_pair, left_bracket)
  check_right_bracket(node, first_pair, left_bracket)
end