From 5c9e3f9ce230997fcd0f9344851e05b6003c322a Mon Sep 17 00:00:00 2001 From: Ben Brown Date: Wed, 31 Aug 2022 09:59:22 -0700 Subject: [PATCH] fix: remove reference to non-working service golangci.com has been shut down since April 2020, so can no longer be used to run golangci-lint in the cloud. See https://medium.com/golangci/golangci-com-is-closing-d1fc1bd30e0e --- pkg/commands/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/root.go b/pkg/commands/root.go index cc5a78dd8d9a..c29e6560ed26 100644 --- a/pkg/commands/root.go +++ b/pkg/commands/root.go @@ -125,7 +125,7 @@ func (e *Executor) initRoot() { rootCmd := &cobra.Command{ Use: "golangci-lint", Short: "golangci-lint is a smart linters runner.", - Long: `Smart, fast linters runner. Run it in cloud for every GitHub pull request on https://golangci.com`, + Long: `Smart, fast linters runner.`, Args: cobra.NoArgs, RunE: func(cmd *cobra.Command, _ []string) error { return cmd.Help()