From c2b813325f51a20630ea16b3c9d690b3c6192c9a Mon Sep 17 00:00:00 2001 From: Kamil Samigullin Date: Sun, 28 Feb 2021 14:31:14 +0300 Subject: [PATCH] docs: update url of gocyclo linter (#1794) --- 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 950d96942826..086309567b25 100644 --- a/pkg/lint/lintersdb/manager.go +++ b/pkg/lint/lintersdb/manager.go @@ -201,7 +201,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config { WithURL("https://github.com/remyoudompheng/go-misc/tree/master/deadcode"), linter.NewConfig(golinters.NewGocyclo()). WithPresets(linter.PresetComplexity). - WithURL("https://github.com/alecthomas/gocyclo"), + WithURL("https://github.com/fzipp/gocyclo"), linter.NewConfig(golinters.NewCyclop(cyclopCfg)). WithLoadForGoAnalysis(). WithPresets(linter.PresetComplexity).