@@ -137,6 +137,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
137
137
grouperCfg * config.GrouperSettings
138
138
ifshortCfg * config.IfshortSettings
139
139
importAsCfg * config.ImportAsSettings
140
+ interfaceBloatCfg * config.InterfaceBloatSettings
140
141
ireturnCfg * config.IreturnSettings
141
142
lllCfg * config.LllSettings
142
143
maintIdxCfg * config.MaintIdxSettings
@@ -209,6 +210,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
209
210
grouperCfg = & m .cfg .LintersSettings .Grouper
210
211
ifshortCfg = & m .cfg .LintersSettings .Ifshort
211
212
importAsCfg = & m .cfg .LintersSettings .ImportAs
213
+ interfaceBloatCfg = & m .cfg .LintersSettings .InterfaceBloat
212
214
ireturnCfg = & m .cfg .LintersSettings .Ireturn
213
215
lllCfg = & m .cfg .LintersSettings .Lll
214
216
maintIdxCfg = & m .cfg .LintersSettings .MaintIdx
@@ -557,6 +559,11 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
557
559
WithPresets (linter .PresetUnused ).
558
560
WithURL ("https://github.com/gordonklaus/ineffassign" ),
559
561
562
+ linter .NewConfig (golinters .NewInterfaceBloat (interfaceBloatCfg )).
563
+ WithSince ("v1.49.0" ).
564
+ WithPresets (linter .PresetStyle ).
565
+ WithURL ("https://github.com/sashamelentyev/interfacebloat" ),
566
+
560
567
linter .NewConfig (golinters .NewInterfacer ()).
561
568
WithSince ("v1.0.0" ).
562
569
WithLoadForGoAnalysis ().
0 commit comments