From d88c0a040d2b0effbb71725fdc90a4793c7840dd Mon Sep 17 00:00:00 2001 From: Joel Hendrix Date: Tue, 26 Jul 2022 15:44:57 -0700 Subject: [PATCH] fix run command for golangci-lint in makefile (#270) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8b5b5b4e..f22590dd 100644 --- a/Makefile +++ b/Makefile @@ -51,8 +51,8 @@ tidy: ; $(info $(M) running go mod tidy…) @ ## Run tidy $Q $(GO) mod tidy .PHONY: lint -lint: ; $(info $(M) running golint…) @ ## Run golint - $Q $(GOLINT) ./... +lint: ; $(info $(M) running golangci-lint…) @ ## Run golangci-lint + $Q $(GOLINT) run .PHONY: staticcheck staticcheck: ; $(info $(M) running staticcheck…) @ ## Run staticcheck