mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 03:26:30 +00:00
c28f7cb29f
Initial part of #435
21 lines
489 B
Go
21 lines
489 B
Go
package golinters
|
|
|
|
import (
|
|
"github.com/Antonboom/errname/pkg/analyzer"
|
|
"golang.org/x/tools/go/analysis"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
)
|
|
|
|
func NewErrName() *goanalysis.Linter {
|
|
analyzers := []*analysis.Analyzer{
|
|
analyzer.New(),
|
|
}
|
|
|
|
return goanalysis.NewLinter(
|
|
"errname",
|
|
"Checks that sentinel errors are prefixed with the `Err` and error types are suffixed with the `Error`.",
|
|
analyzers,
|
|
nil,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|