30 lines
		
	
	
		
			649 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			649 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package golinters
 | |
| 
 | |
| import (
 | |
| 	"github.com/tomarrell/wrapcheck/v2/wrapcheck"
 | |
| 	"golang.org/x/tools/go/analysis"
 | |
| 
 | |
| 	"github.com/golangci/golangci-lint/pkg/config"
 | |
| 	"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
 | |
| )
 | |
| 
 | |
| const wrapcheckName = "wrapcheck"
 | |
| 
 | |
| func NewWrapcheck(settings *config.WrapcheckSettings) *goanalysis.Linter {
 | |
| 	cfg := wrapcheck.NewDefaultConfig()
 | |
| 	if settings != nil {
 | |
| 		if len(settings.IgnoreSigs) != 0 {
 | |
| 			cfg.IgnoreSigs = settings.IgnoreSigs
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	a := wrapcheck.NewAnalyzer(cfg)
 | |
| 
 | |
| 	return goanalysis.NewLinter(
 | |
| 		wrapcheckName,
 | |
| 		a.Doc,
 | |
| 		[]*analysis.Analyzer{a},
 | |
| 		nil,
 | |
| 	).WithLoadMode(goanalysis.LoadModeTypesInfo)
 | |
| }
 | 
