mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-03-04 02:51:10 +00:00
22 lines
423 B
Go
22 lines
423 B
Go
|
package golinters
|
||
|
|
||
|
import (
|
||
|
"github.com/sonatard/noctx"
|
||
|
"golang.org/x/tools/go/analysis"
|
||
|
|
||
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
||
|
)
|
||
|
|
||
|
func NewNoctx() *goanalysis.Linter {
|
||
|
analyzers := []*analysis.Analyzer{
|
||
|
noctx.Analyzer,
|
||
|
}
|
||
|
|
||
|
return goanalysis.NewLinter(
|
||
|
"noctx",
|
||
|
"noctx finds sending http request without context.Context",
|
||
|
analyzers,
|
||
|
nil,
|
||
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
||
|
}
|