From 34a1975142cd7defafdf16076d500a3e27a35d46 Mon Sep 17 00:00:00 2001 From: Jarek Kowalski Date: Sat, 27 Oct 2018 09:18:49 -0700 Subject: [PATCH] lint: force GO111MODULE=on when running gometalinter --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c9111bcb..b41978ef0 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ setup: GO111MODULE=off gometalinter.v2 --install lint: - gometalinter.v2 ./... + GO111MODULE=on gometalinter.v2 ./... test: GO111MODULE=on go test -count=1 -coverprofile=tmp.cov --coverpkg ./... -timeout 90s ./...