class RuboCop::ConfigLoader

def add_missing_namespaces(path, hash)

def add_missing_namespaces(path, hash)
  # Using `hash.each_key` will cause the
  # `can't add a new key into hash during iteration` error
  hash_keys = hash.keys
  hash_keys.each do |key|
    q = Cop::Registry.qualified_cop_name(key, path)
    next if q == key
    hash[q] = hash.delete(key)
  end
end