@@ -108,6 +108,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
108108 var exhaustiveCfg * config.ExhaustiveSettings
109109 var exhaustiveStructCfg * config.ExhaustiveStructSettings
110110 var goModDirectivesCfg * config.GoModDirectivesSettings
111+ var goMndCfg * config.GoMndSettings
111112 var gosecCfg * config.GoSecSettings
112113 var gosimpleCfg * config.StaticCheckSettings
113114 var govetCfg * config.GovetSettings
@@ -138,6 +139,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
138139 exhaustiveCfg = & m .cfg .LintersSettings .Exhaustive
139140 exhaustiveStructCfg = & m .cfg .LintersSettings .ExhaustiveStruct
140141 goModDirectivesCfg = & m .cfg .LintersSettings .GoModDirectives
142+ goMndCfg = & m .cfg .LintersSettings .Gomnd
141143 gosecCfg = & m .cfg .LintersSettings .Gosec
142144 gosimpleCfg = & m .cfg .LintersSettings .Gosimple
143145 govetCfg = & m .cfg .LintersSettings .Govet
@@ -367,7 +369,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
367369 WithURL ("https://github.com/golang/lint" ).
368370 Deprecated ("The repository of the linter has been archived by the owner." , "v1.41.0" , "revive" ),
369371
370- linter .NewConfig (golinters .NewGoMND (m . cfg )).
372+ linter .NewConfig (golinters .NewGoMND (goMndCfg )).
371373 WithSince ("v1.22.0" ).
372374 WithPresets (linter .PresetStyle ).
373375 WithURL ("https://github.com/tommy-muehle/go-mnd" ),
0 commit comments