mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
27 lines
609 B
Go
27 lines
609 B
Go
|
package config
|
||
|
|
||
|
type Config struct {
|
||
|
Run Run
|
||
|
|
||
|
Output Output
|
||
|
|
||
|
LintersSettings LintersSettings `mapstructure:"linters-settings"`
|
||
|
Linters Linters
|
||
|
Issues Issues
|
||
|
Severity Severity
|
||
|
Version Version
|
||
|
|
||
|
InternalCmdTest bool `mapstructure:"internal-cmd-test"` // Option is used only for testing golangci-lint command, don't use it
|
||
|
InternalTest bool // Option is used only for testing golangci-lint code, don't use it
|
||
|
}
|
||
|
|
||
|
func NewDefault() *Config {
|
||
|
return &Config{
|
||
|
LintersSettings: defaultLintersSettings,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type Version struct {
|
||
|
Format string `mapstructure:"format"`
|
||
|
}
|