 f1a46f9861
			
		
	
	
		f1a46f9861
		
			
		
	
	
	
	
		
			
			Support for linter that enforces using context on each `http.Request` https://github.com/sonatard/noctx
		
			
				
	
	
		
			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)
 | |
| }
 |