mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
c28f7cb29f
Initial part of #435
32 lines
754 B
Go
32 lines
754 B
Go
package golinters
|
|
|
|
import (
|
|
"github.com/tomarrell/wrapcheck/v2/wrapcheck"
|
|
"golang.org/x/tools/go/analysis"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/config"
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
)
|
|
|
|
const wrapcheckName = "wrapcheck"
|
|
|
|
func NewWrapcheck(settings *config.WrapcheckSettings) *goanalysis.Linter {
|
|
cfg := wrapcheck.NewDefaultConfig()
|
|
if settings != nil {
|
|
if len(settings.IgnoreSigs) != 0 {
|
|
cfg.IgnoreSigs = settings.IgnoreSigs
|
|
}
|
|
if len(settings.IgnorePackageGlobs) != 0 {
|
|
cfg.IgnorePackageGlobs = settings.IgnorePackageGlobs
|
|
}
|
|
}
|
|
|
|
a := wrapcheck.NewAnalyzer(cfg)
|
|
|
|
return goanalysis.NewLinter(
|
|
wrapcheckName,
|
|
a.Doc,
|
|
[]*analysis.Analyzer{a},
|
|
nil,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|