18 lines
		
	
	
		
			425 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			425 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package golinters
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/sylvia7788/contextcheck"
 | 
						|
	"golang.org/x/tools/go/analysis"
 | 
						|
 | 
						|
	"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
 | 
						|
)
 | 
						|
 | 
						|
func NewContextCheck() *goanalysis.Linter {
 | 
						|
	return goanalysis.NewLinter(
 | 
						|
		"contextcheck",
 | 
						|
		"check the function whether use a non-inherited context",
 | 
						|
		[]*analysis.Analyzer{contextcheck.NewAnalyzer()},
 | 
						|
		nil,
 | 
						|
	).WithLoadMode(goanalysis.LoadModeTypesInfo)
 | 
						|
}
 |