From 052c540ca4a76b15cd58df4aa2134c6361a25d72 Mon Sep 17 00:00:00 2001 From: Rodrigo Chiossi Date: Mon, 16 Sep 2019 20:07:52 +0000 Subject: [PATCH] lint: Replace gomatalinter by golangci-lint Gometalinter has been deprecated in favor of golangci-lint. This patch updates `make lint` to use the proper linter. Signed-off-by: Rodrigo Chiossi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c6d83df..669470a 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ checkcoverage: .PHONY: lint lint: gopath - @gometalinter.v2 --deadline=10m --tests --vendor --disable-all \ + @golangci-lint run --deadline=10m --tests --disable-all \ --enable=misspell \ --enable=vet \ --enable=ineffassign \