From 47d6f71e5a7c7adad77c15783e0ea127f5a81df6 Mon Sep 17 00:00:00 2001 From: Zach Ramsay Date: Fri, 22 Sep 2017 10:09:05 -0400 Subject: [PATCH] Makefile: remove redundant lint --- Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 418ba3ee0..d097ae72b 100644 --- a/Makefile +++ b/Makefile @@ -33,12 +33,6 @@ test: install fmt: @ go fmt ./... -lint: - @ go get -u github.com/golang/lint/golint - @ for file in $$(find "." -name '*.go' | grep -v '/vendor/' | grep -v '\.pb\.go'); do \ - golint -set_exit_status $${file}; \ - done; - test_integrations: get_vendor_deps install test get_deps: @@ -85,4 +79,4 @@ metalinter_test: tools #--enable=unparam \ #--enable=vet \ -.PHONY: all build test fmt lint get_deps tools +.PHONY: all build test fmt get_deps tools