mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 03:26:30 +00:00
c28f7cb29f
Initial part of #435
31 lines
687 B
Go
31 lines
687 B
Go
package golinters
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/mbilski/exhaustivestruct/pkg/analyzer"
|
|
"golang.org/x/tools/go/analysis"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/config"
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
)
|
|
|
|
func NewExhaustiveStruct(settings *config.ExhaustiveStructSettings) *goanalysis.Linter {
|
|
a := analyzer.Analyzer
|
|
|
|
var cfg map[string]map[string]interface{}
|
|
if settings != nil {
|
|
cfg = map[string]map[string]interface{}{
|
|
a.Name: {
|
|
"struct_patterns": strings.Join(settings.StructPatterns, ","),
|
|
},
|
|
}
|
|
}
|
|
|
|
return goanalysis.NewLinter(
|
|
a.Name,
|
|
a.Doc,
|
|
[]*analysis.Analyzer{a},
|
|
cfg,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|