mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
12 lines
209 B
Go
12 lines
209 B
Go
|
package config
|
||
|
|
||
|
type Linters struct {
|
||
|
Enable []string
|
||
|
Disable []string
|
||
|
EnableAll bool `mapstructure:"enable-all"`
|
||
|
DisableAll bool `mapstructure:"disable-all"`
|
||
|
Fast bool
|
||
|
|
||
|
Presets []string
|
||
|
}
|