@@ -118,6 +118,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
118
118
forbidigoCfg * config.ForbidigoSettings
119
119
funlenCfg * config.FunlenSettings
120
120
gciCfg * config.GciSettings
121
+ ginkgolinterCfg * config.GinkgoLinterSettings
121
122
gocognitCfg * config.GocognitSettings
122
123
goconstCfg * config.GoConstSettings
123
124
gocriticCfg * config.GoCriticSettings
@@ -194,6 +195,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
194
195
forbidigoCfg = & m .cfg .LintersSettings .Forbidigo
195
196
funlenCfg = & m .cfg .LintersSettings .Funlen
196
197
gciCfg = & m .cfg .LintersSettings .Gci
198
+ ginkgolinterCfg = & m .cfg .LintersSettings .GinkgoLinter
197
199
gocognitCfg = & m .cfg .LintersSettings .Gocognit
198
200
goconstCfg = & m .cfg .LintersSettings .Goconst
199
201
gocriticCfg = & m .cfg .LintersSettings .Gocritic
@@ -430,6 +432,12 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
430
432
WithPresets (linter .PresetFormatting , linter .PresetImport ).
431
433
WithURL ("https://github.com/daixiang0/gci" ),
432
434
435
+ linter .NewConfig (golinters .NewGinkgoLinter (ginkgolinterCfg )).
436
+ WithSince ("v1.51.0" ).
437
+ WithLoadForGoAnalysis ().
438
+ WithPresets (linter .PresetStyle ).
439
+ WithURL ("https://github.com/nunnatsa/ginkgolinter" ),
440
+
433
441
linter .NewConfig (golinters .NewGochecknoglobals ()).
434
442
WithSince ("v1.12.0" ).
435
443
WithPresets (linter .PresetStyle ).
0 commit comments