From 57de50b7d44a077914195c6006af4db3c9c6f1cc Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Sat, 30 Jul 2022 13:00:37 +0200 Subject: lint: add golangci-lint to the linters go vet has been removed from the lint step as it is run by the new linter. Signed-off-by: Moritz Poldrack Acked-by: Robin Jarry --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e4755a8a..c799682e 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ lint: @$(GO) run mvdan.cc/gofumpt -l . | grep ^ \ && echo The above files need to be formatted, please run make fmt && exit 1 \ || echo all files formatted. - $(GO) vet ./... + $(GO) run github.com/golangci/golangci-lint/cmd/golangci-lint run .PHONY: tests tests: -- cgit