From 66248ff3eff37c662d64f033d5b41387cdeea086 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 15 Nov 2019 14:47:44 +0100 Subject: [PATCH] build: print message when there are no lint issues --- build/ci.go | 1 + 1 file changed, 1 insertion(+) diff --git a/build/ci.go b/build/ci.go index b637624fe6..4911628313 100644 --- a/build/ci.go +++ b/build/ci.go @@ -349,6 +349,7 @@ func doLint(cmdline []string) { linter := downloadLinter(*cachedir) lflags := []string{"run", "--config", ".golangci.yml"} build.MustRunCommand(linter, append(lflags, packages...)...) + fmt.Println("You have achieved perfection.") } // downloadLinter downloads and unpacks golangci-lint.