1
0
mirror of https://github.com/mgechev/revive.git synced 2025-03-17 20:57:58 +02:00

fix: enforce-repeated-arg-type-style in config (#970)

This commit is contained in:
Ludovic Fernandez 2024-02-07 18:00:26 +01:00 committed by GitHub
parent ef34f92cef
commit 5c5d6c1075
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,6 +92,7 @@ var allRules = append([]lint.Rule{
&rule.RedundantImportAlias{},
&rule.ImportAliasNamingRule{},
&rule.EnforceMapStyleRule{},
&rule.EnforceRepeatedArgTypeStyleRule{},
&rule.EnforceSliceStyleRule{},
&rule.MaxControlNestingRule{},
}, defaultRules...)