class RuboCop::Cop::Layout::FirstArrayElementIndentation

def message_for_right_bracket(indent_base_type)

def message_for_right_bracket(indent_base_type)
  case indent_base_type
  when :left_brace_or_bracket
    'Indent the right bracket the same as the left bracket.'
  when :first_column_after_left_parenthesis
    'Indent the right bracket the same as the first position ' \
    'after the preceding left parenthesis.'
  when :parent_hash_key
    'Indent the right bracket the same as the parent hash key.' \
  else
    'Indent the right bracket the same as the start of the line ' \
    'where the left bracket is.'
  end
end