From 51f628282c65f754152a346074f2ae286121138e Mon Sep 17 00:00:00 2001 From: Rastislav Szabo Date: Fri, 5 May 2017 11:08:49 +0200 Subject: [PATCH] added lint make target Change-Id: I994f45837f9e5ac6aba21ad42c6eff083e8aad23 Signed-off-by: Rastislav Szabo --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 10e1b12..859ed1e 100644 --- a/Makefile +++ b/Makefile @@ -16,4 +16,7 @@ generate: @cd core && go generate ./... @cd examples && go generate ./... +lint: + @golint ./... | grep -v vendor | grep -v bin_api + .PHONY: build test install clean generate -- 2.16.6