18 lines
392 B
Go
18 lines
392 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 {
|
|
return goanalysis.NewLinter(
|
|
"noctx",
|
|
"noctx finds sending http request without context.Context",
|
|
[]*analysis.Analyzer{noctx.Analyzer},
|
|
nil,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|