From 091a641f913821972fd55a58998ff2b55ff7f93c Mon Sep 17 00:00:00 2001
From: Ludovic Fernandez <ldez@users.noreply.github.com>
Date: Mon, 6 Jun 2022 13:19:33 +0200
Subject: [PATCH] docs: have a clear explanation about the staticcheck
 integration. (#2894)

docs: have a clear state about staticcheck
---
 pkg/golinters/staticcheck.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pkg/golinters/staticcheck.go b/pkg/golinters/staticcheck.go
index 2226eabb..c7b7b3db 100644
--- a/pkg/golinters/staticcheck.go
+++ b/pkg/golinters/staticcheck.go
@@ -14,7 +14,8 @@ func NewStaticcheck(settings *config.StaticCheckSettings) *goanalysis.Linter {
 
 	return goanalysis.NewLinter(
 		"staticcheck",
-		"Staticcheck is a go vet on steroids, applying a ton of static analysis checks",
+		"It's a set of rules from staticcheck. It's not the same thing as the staticcheck binary."+
+			" The author of staticcheck doesn't support or approve the use of staticcheck as a library inside golangci-lint.",
 		analyzers,
 		nil,
 	).WithLoadMode(goanalysis.LoadModeTypesInfo)