woodpecker/vendor/github.com/golangci/golangci-lint/pkg/config/linters.go

12 lines
209 B
Go
Raw Normal View History

package config
type Linters struct {
Enable []string
Disable []string
EnableAll bool `mapstructure:"enable-all"`
DisableAll bool `mapstructure:"disable-all"`
Fast bool
Presets []string
}