38 lines
1.2 KiB
Go
38 lines
1.2 KiB
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/goanalysis"
|
|
)
|
|
|
|
func NewExhaustive(settings *config.ExhaustiveSettings) *goanalysis.Linter {
|
|
a := exhaustive.Analyzer
|
|
|
|
var cfg map[string]map[string]any
|
|
if settings != nil {
|
|
cfg = map[string]map[string]any{
|
|
a.Name: {
|
|
exhaustive.CheckFlag: settings.Check,
|
|
exhaustive.CheckGeneratedFlag: settings.CheckGenerated,
|
|
exhaustive.DefaultSignifiesExhaustiveFlag: settings.DefaultSignifiesExhaustive,
|
|
exhaustive.IgnoreEnumMembersFlag: settings.IgnoreEnumMembers,
|
|
exhaustive.IgnoreEnumTypesFlag: settings.IgnoreEnumTypes,
|
|
exhaustive.PackageScopeOnlyFlag: settings.PackageScopeOnly,
|
|
exhaustive.ExplicitExhaustiveMapFlag: settings.ExplicitExhaustiveMap,
|
|
exhaustive.ExplicitExhaustiveSwitchFlag: settings.ExplicitExhaustiveSwitch,
|
|
exhaustive.DefaultCaseRequiredFlag: settings.DefaultCaseRequired,
|
|
},
|
|
}
|
|
}
|
|
|
|
return goanalysis.NewLinter(
|
|
a.Name,
|
|
a.Doc,
|
|
[]*analysis.Analyzer{a},
|
|
cfg,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|