From: Rastislav Szabo Date: Fri, 5 May 2017 09:08:49 +0000 (+0200) Subject: added lint make target X-Git-Tag: v0.1.0~94 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=51f628282c65f754152a346074f2ae286121138e;p=govpp.git added lint make target Change-Id: I994f45837f9e5ac6aba21ad42c6eff083e8aad23 Signed-off-by: Rastislav Szabo --- 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