@@ -90,6 +90,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
9090gocycloCfg * config.GoCycloSettings
9191godotCfg * config.GodotSettings
9292godoxCfg * config.GodoxSettings
93+ goFactoryCfg * config.GoFactoryLintSettings
9394gofmtCfg * config.GoFmtSettings
9495gofumptCfg * config.GofumptSettings
9596goheaderCfg * config.GoHeaderSettings
@@ -174,6 +175,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
174175gocycloCfg = & m .cfg .LintersSettings .Gocyclo
175176godotCfg = & m .cfg .LintersSettings .Godot
176177godoxCfg = & m .cfg .LintersSettings .Godox
178+ goFactoryCfg = & m .cfg .LintersSettings .Gofactory
177179gofmtCfg = & m .cfg .LintersSettings .Gofmt
178180gofumptCfg = & m .cfg .LintersSettings .Gofumpt
179181goheaderCfg = & m .cfg .LintersSettings .Goheader
@@ -488,6 +490,11 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
488490WithLoadForGoAnalysis ().
489491WithURL ("https://github.com/Djarvur/go-err113" ),
490492
493+ linter .NewConfig (golinters .NewGoFactoryLint (goFactoryCfg )).
494+ WithSince ("next_version" ).
495+ WithPresets (linter .PresetStyle ).
496+ WithURL ("https://github.com/maranqz/go-factory-lint" ),
497+
491498linter .NewConfig (golinters .NewGofmt (gofmtCfg )).
492499WithSince ("v1.0.0" ).
493500WithPresets (linter .PresetFormatting ).