@@ -105,6 +105,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
105
105
grouperCfg * config.GrouperSettings
106
106
ifshortCfg * config.IfshortSettings
107
107
importAsCfg * config.ImportAsSettings
108
+ inamedparamCfg * config.INamedParamSettings
108
109
interfaceBloatCfg * config.InterfaceBloatSettings
109
110
ireturnCfg * config.IreturnSettings
110
111
lllCfg * config.LllSettings
@@ -189,6 +190,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
189
190
grouperCfg = & m .cfg .LintersSettings .Grouper
190
191
ifshortCfg = & m .cfg .LintersSettings .Ifshort
191
192
importAsCfg = & m .cfg .LintersSettings .ImportAs
193
+ inamedparamCfg = & m .cfg .LintersSettings .Inamedparam
192
194
interfaceBloatCfg = & m .cfg .LintersSettings .InterfaceBloat
193
195
ireturnCfg = & m .cfg .LintersSettings .Ireturn
194
196
lllCfg = & m .cfg .LintersSettings .Lll
@@ -584,7 +586,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
584
586
WithLoadForGoAnalysis ().
585
587
WithURL ("https://github.com/julz/importas" ),
586
588
587
- linter .NewConfig (golinters .NewINamedParam ()).
589
+ linter .NewConfig (golinters .NewINamedParam (inamedparamCfg )).
588
590
WithSince ("v1.55.0" ).
589
591
WithPresets (linter .PresetStyle ).
590
592
WithURL ("https://github.com/macabu/inamedparam" ),
0 commit comments