
* update exhaustive to latest * wip * update dep * update flag name * use versioned dep * add tests * unused file * no need config file * add vars to test * test comment * remove default settings
27 lines
728 B
Go
27 lines
728 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,
|
|
},
|
|
}
|
|
}
|
|
|
|
return goanalysis.NewLinter(a.Name, a.Doc, []*analysis.Analyzer{a}, cfg).
|
|
WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|