From 6d8c5023498cc97764160f383a7bb3b497c05dff Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 1 Nov 2020 16:37:45 +0000 Subject: [PATCH] fix(makefile): reduce deps of lint target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8ab6b05..7bb849a 100644 --- a/Makefile +++ b/Makefile @@ -98,7 +98,7 @@ test: go test $(V) -count=1 --race ./... .PHONY: lint -lint: $(TOOLS) +lint: golangci-lint $(info Running Go linters) GOGC=off golangci-lint $(V) run