@@ -320,7 +320,8 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
320
320
WithSince ("v1.0.0" ).
321
321
WithLoadForGoAnalysis ().
322
322
WithPresets (linter .PresetUnused ).
323
- WithURL ("https://github.com/remyoudompheng/go-misc/tree/master/deadcode" ),
323
+ WithURL ("https://github.com/remyoudompheng/go-misc/tree/master/deadcode" ).
324
+ Deprecated ("The owner seems to have abandoned the linter." , "v1.49.0" , "unused" ),
324
325
325
326
linter .NewConfig (golinters .NewDepguard (depGuardCfg )).
326
327
WithSince ("v1.4.0" ).
@@ -714,6 +715,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
714
715
WithLoadForGoAnalysis ().
715
716
WithPresets (linter .PresetUnused ).
716
717
WithURL ("https://github.com/opennota/check" ).
718
+ Deprecated ("The owner seems to have abandoned the linter." , "v1.49.0" , "unused" ).
717
719
WithNoopFallback (m .cfg ),
718
720
719
721
linter .NewConfig (golinters .NewStylecheck (stylecheckCfg )).
@@ -786,7 +788,8 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
786
788
WithSince ("v1.0.0" ).
787
789
WithLoadForGoAnalysis ().
788
790
WithPresets (linter .PresetUnused ).
789
- WithURL ("https://github.com/opennota/check" ),
791
+ WithURL ("https://github.com/opennota/check" ).
792
+ Deprecated ("The owner seems to have abandoned the linter." , "v1.49.0" , "unused" ),
790
793
791
794
linter .NewConfig (golinters .NewVarnamelen (varnamelenCfg )).
792
795
WithSince ("v1.43.0" ).
@@ -831,9 +834,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
831
834
golinters .NewStaticcheck (staticcheckCfg ).Name (): true ,
832
835
golinters .NewUnused (unusedCfg ).Name (): true ,
833
836
golinters .NewGosimple (gosimpleCfg ).Name (): true ,
834
- golinters .NewVarcheck (varcheckCfg ).Name (): true ,
835
837
golinters .NewIneffassign ().Name (): true ,
836
- golinters .NewDeadcode ().Name (): true ,
837
838
golinters .NewTypecheck ().Name (): true ,
838
839
}
839
840
return enableLinterConfigs (lcs , func (lc * linter.Config ) bool {
0 commit comments