class RuboCop::Cop::Lint::SymbolConversion

def correct_inconsistent_hash_keys(keys)

def correct_inconsistent_hash_keys(keys)
  keys.each do |key|
    ignore_node(key)
    next if requires_quotes?(key)
    next if properly_quoted?(key.source, %("#{key.value}"))
    correction = %("#{key.value}")
    register_offense(
      key,
      correction: correction,
      message: format(MSG_CONSISTENCY, correction: "#{correction}:")
    )
  end
end