Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChecksConfig ¶
type ChecksConfig struct { // AddAllBuiltIn, if set, adds all built-in checks. This allows users to // explicitly opt-out of checks that are not relevant using Exclude. AddAllBuiltIn bool `json:"addAllBuiltIn"` // DoNotAutoAddDefaults, if set, prevents the automatic addition of default checks. DoNotAutoAddDefaults bool `json:"doNotAutoAddDefaults"` // Exclude is a list of check names to exclude. Exclude []string `json:"exclude"` // Include is a list of check names to include. If a check is in both Include and Exclude, // Exclude wins. Include []string `json:"include"` }
ChecksConfig is the config that determines which checks to run.
Click to show internal directories.
Click to hide internal directories.