32 lines
		
	
	
		
			1003 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1003 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package golinters
 | |
| 
 | |
| import (
 | |
| 	"github.com/nishanths/exhaustive"
 | |
| 	"golang.org/x/tools/go/analysis"
 | |
| 
 | |
| 	"github.com/golangci/golangci-lint/pkg/config"
 | |
| 	"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
 | |
| )
 | |
| 
 | |
| func NewExhaustive(settings *config.ExhaustiveSettings) *goanalysis.Linter {
 | |
| 	a := exhaustive.Analyzer
 | |
| 
 | |
| 	var cfg map[string]map[string]interface{}
 | |
| 	if settings != nil {
 | |
| 		cfg = map[string]map[string]interface{}{
 | |
| 			a.Name: {
 | |
| 				exhaustive.CheckGeneratedFlag:             settings.CheckGenerated,
 | |
| 				exhaustive.DefaultSignifiesExhaustiveFlag: settings.DefaultSignifiesExhaustive,
 | |
| 				exhaustive.IgnoreEnumMembersFlag:          settings.IgnoreEnumMembers,
 | |
| 				exhaustive.PackageScopeOnlyFlag:           settings.PackageScopeOnly,
 | |
| 
 | |
| 				exhaustive.IgnorePatternFlag:    settings.IgnorePattern,
 | |
| 				exhaustive.CheckingStrategyFlag: settings.CheckingStrategy,
 | |
| 			},
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return goanalysis.NewLinter(a.Name, a.Doc, []*analysis.Analyzer{a}, cfg).
 | |
| 		WithLoadMode(goanalysis.LoadModeTypesInfo)
 | |
| }
 | 
![dependabot[bot]](/assets/img/avatar_default.png)