@@ -147,6 +147,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
147
147
makezeroCfg * config.MakezeroSettings
148
148
malignedCfg * config.MalignedSettings
149
149
misspellCfg * config.MisspellSettings
150
+ musttagCfg * config.MustTagSettings
150
151
nakedretCfg * config.NakedretSettings
151
152
nestifCfg * config.NestifSettings
152
153
nilNilCfg * config.NilNilSettings
@@ -224,6 +225,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
224
225
makezeroCfg = & m .cfg .LintersSettings .Makezero
225
226
malignedCfg = & m .cfg .LintersSettings .Maligned
226
227
misspellCfg = & m .cfg .LintersSettings .Misspell
228
+ musttagCfg = & m .cfg .LintersSettings .MustTag
227
229
nakedretCfg = & m .cfg .LintersSettings .Nakedret
228
230
nestifCfg = & m .cfg .LintersSettings .Nestif
229
231
nilNilCfg = & m .cfg .LintersSettings .NilNil
@@ -632,6 +634,12 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
632
634
WithAutoFix ().
633
635
WithURL ("https://github.com/client9/misspell" ),
634
636
637
+ linter .NewConfig (golinters .NewMustTag (musttagCfg )).
638
+ WithSince ("v1.51.0" ).
639
+ WithLoadForGoAnalysis ().
640
+ WithPresets (linter .PresetStyle , linter .PresetBugs ).
641
+ WithURL ("https://github.com/junk1tm/musttag" ),
642
+
635
643
linter .NewConfig (golinters .NewNakedret (nakedretCfg )).
636
644
WithSince ("v1.19.0" ).
637
645
WithPresets (linter .PresetStyle ).
0 commit comments