From ef0748e9fe08cf85c3851bd1aa07c2058f78574c Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Fri, 19 Mar 2021 04:11:27 +0100 Subject: [PATCH] fix: missing since version for goconst --- pkg/lint/lintersdb/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/lint/lintersdb/manager.go b/pkg/lint/lintersdb/manager.go index 9938ed4f889a..597b6c655d8b 100644 --- a/pkg/lint/lintersdb/manager.go +++ b/pkg/lint/lintersdb/manager.go @@ -226,7 +226,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config { WithPresets(linter.PresetStyle). WithURL("https://github.com/mibk/dupl"), linter.NewConfig(golinters.NewGoconst()). - WithSince(""). + WithSince("v1.0.0"). WithPresets(linter.PresetStyle). WithURL("https://github.com/jgautheron/goconst"), linter.NewConfig(golinters.NewDeadcode()).