@@ -90,6 +90,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
90
90
gocycloCfg * config.GoCycloSettings
91
91
godotCfg * config.GodotSettings
92
92
godoxCfg * config.GodoxSettings
93
+ goFactoryCfg * config.GoFactoryLintSettings
93
94
gofmtCfg * config.GoFmtSettings
94
95
gofumptCfg * config.GofumptSettings
95
96
goheaderCfg * config.GoHeaderSettings
@@ -174,6 +175,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
174
175
gocycloCfg = & m .cfg .LintersSettings .Gocyclo
175
176
godotCfg = & m .cfg .LintersSettings .Godot
176
177
godoxCfg = & m .cfg .LintersSettings .Godox
178
+ goFactoryCfg = & m .cfg .LintersSettings .Gofactory
177
179
gofmtCfg = & m .cfg .LintersSettings .Gofmt
178
180
gofumptCfg = & m .cfg .LintersSettings .Gofumpt
179
181
goheaderCfg = & m .cfg .LintersSettings .Goheader
@@ -488,6 +490,11 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
488
490
WithLoadForGoAnalysis ().
489
491
WithURL ("https://github.com/Djarvur/go-err113" ),
490
492
493
+ linter .NewConfig (golinters .NewGoFactoryLint (goFactoryCfg )).
494
+ WithSince ("next_version" ).
495
+ WithPresets (linter .PresetStyle ).
496
+ WithURL ("https://github.com/maranqz/go-factory-lint" ),
497
+
491
498
linter .NewConfig (golinters .NewGofmt (gofmtCfg )).
492
499
WithSince ("v1.0.0" ).
493
500
WithPresets (linter .PresetFormatting ).
0 commit comments