From 09c04deb3e9f150eaa34976bbb5454d7760611fa Mon Sep 17 00:00:00 2001 From: Josh Humphries Date: Fri, 12 Oct 2018 08:48:20 -0400 Subject: [PATCH] use correct package name for golint --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c0b179..73a2020 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ predeclared: # Intentionally omitted from CI, but target here for ad-hoc reports. .PHONY: golint golint: - @go get github.com/golang/lint/golint + @go get golang.org/x/lint/golint golint -min_confidence 0.9 -set_exit_status ./... # Intentionally omitted from CI, but target here for ad-hoc reports.