mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-13 12:06:29 +00:00
c28f7cb29f
Initial part of #435
27 lines
799 B
Go
27 lines
799 B
Go
package golinters
|
|
|
|
import (
|
|
"github.com/nishanths/exhaustive"
|
|
"golang.org/x/tools/go/analysis"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/config"
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
)
|
|
|
|
func NewExhaustive(settings *config.ExhaustiveSettings) *goanalysis.Linter {
|
|
a := exhaustive.Analyzer
|
|
|
|
var cfg map[string]map[string]interface{}
|
|
if settings != nil {
|
|
cfg = map[string]map[string]interface{}{
|
|
a.Name: {
|
|
exhaustive.CheckGeneratedFlag: settings.CheckGenerated,
|
|
exhaustive.DefaultSignifiesExhaustiveFlag: settings.DefaultSignifiesExhaustive,
|
|
exhaustive.IgnorePatternFlag: settings.IgnorePattern,
|
|
},
|
|
}
|
|
}
|
|
|
|
return goanalysis.NewLinter(a.Name, a.Doc, []*analysis.Analyzer{a}, cfg).
|
|
WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|