mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
19 lines
430 B
Go
19 lines
430 B
Go
|
package golinters
|
||
|
|
||
|
import (
|
||
|
"github.com/gostaticanalysis/nilerr"
|
||
|
"golang.org/x/tools/go/analysis"
|
||
|
|
||
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
||
|
)
|
||
|
|
||
|
func NewNilErr() *goanalysis.Linter {
|
||
|
a := nilerr.Analyzer
|
||
|
return goanalysis.NewLinter(
|
||
|
a.Name,
|
||
|
"Finds the code that returns nil even if it checks that the error is not nil.",
|
||
|
[]*analysis.Analyzer{a},
|
||
|
nil,
|
||
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
||
|
}
|