@@ -320,7 +320,8 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
320320 WithSince ("v1.0.0" ).
321321 WithLoadForGoAnalysis ().
322322 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" ),
324325
325326 linter .NewConfig (golinters .NewDepguard (depGuardCfg )).
326327 WithSince ("v1.4.0" ).
@@ -714,6 +715,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
714715 WithLoadForGoAnalysis ().
715716 WithPresets (linter .PresetUnused ).
716717 WithURL ("https://github.com/opennota/check" ).
718+ Deprecated ("The owner seems to have abandoned the linter." , "v1.49.0" , "unused" ).
717719 WithNoopFallback (m .cfg ),
718720
719721 linter .NewConfig (golinters .NewStylecheck (stylecheckCfg )).
@@ -786,7 +788,8 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
786788 WithSince ("v1.0.0" ).
787789 WithLoadForGoAnalysis ().
788790 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" ),
790793
791794 linter .NewConfig (golinters .NewVarnamelen (varnamelenCfg )).
792795 WithSince ("v1.43.0" ).
@@ -831,9 +834,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
831834 golinters .NewStaticcheck (staticcheckCfg ).Name (): true ,
832835 golinters .NewUnused (unusedCfg ).Name (): true ,
833836 golinters .NewGosimple (gosimpleCfg ).Name (): true ,
834- golinters .NewVarcheck (varcheckCfg ).Name (): true ,
835837 golinters .NewIneffassign ().Name (): true ,
836- golinters .NewDeadcode ().Name (): true ,
837838 golinters .NewTypecheck ().Name (): true ,
838839 }
839840 return enableLinterConfigs (lcs , func (lc * linter.Config ) bool {
0 commit comments