@@ -137,6 +137,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
137137 grouperCfg * config.GrouperSettings
138138 ifshortCfg * config.IfshortSettings
139139 importAsCfg * config.ImportAsSettings
140+ interfaceBloatCfg * config.InterfaceBloatSettings
140141 ireturnCfg * config.IreturnSettings
141142 lllCfg * config.LllSettings
142143 maintIdxCfg * config.MaintIdxSettings
@@ -209,6 +210,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
209210 grouperCfg = & m .cfg .LintersSettings .Grouper
210211 ifshortCfg = & m .cfg .LintersSettings .Ifshort
211212 importAsCfg = & m .cfg .LintersSettings .ImportAs
213+ interfaceBloatCfg = & m .cfg .LintersSettings .InterfaceBloat
212214 ireturnCfg = & m .cfg .LintersSettings .Ireturn
213215 lllCfg = & m .cfg .LintersSettings .Lll
214216 maintIdxCfg = & m .cfg .LintersSettings .MaintIdx
@@ -557,6 +559,11 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
557559 WithPresets (linter .PresetUnused ).
558560 WithURL ("https://github.com/gordonklaus/ineffassign" ),
559561
562+ linter .NewConfig (golinters .NewInterfaceBloat (interfaceBloatCfg )).
563+ WithSince ("v1.49.0" ).
564+ WithPresets (linter .PresetStyle ).
565+ WithURL ("https://github.com/sashamelentyev/interfacebloat" ),
566+
560567 linter .NewConfig (golinters .NewInterfacer ()).
561568 WithSince ("v1.0.0" ).
562569 WithLoadForGoAnalysis ().
0 commit comments