mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
21 lines
493 B
Go
21 lines
493 B
Go
package fields
|
|
|
|
var AllowedDuplicateOptions = map[string]struct{}{
|
|
"CertificateFile": {},
|
|
"Match": {},
|
|
"Host": {},
|
|
}
|
|
|
|
// A list of
|
|
// <Option name> -> <List of fields that need to be present for the option>
|
|
var DependentFields = map[string][]string{
|
|
"CanonicalDomains": {"CanonicalizeHostname"},
|
|
"ControlPersist": {"ControlMaster"},
|
|
}
|
|
|
|
var HostDisallowedOptions = map[string]struct{}{
|
|
"EnableSSHKeysign": {},
|
|
}
|
|
|
|
var GlobalDisallowedOptions = map[string]struct{}{}
|