sonata f1a46f9861
Add Noctx (#1179)
Support for linter that enforces using context on each `http.Request`
https://github.com/sonatard/noctx
2020-06-08 20:21:58 +00:00

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)
}