Makefile: remove redundant lint

This commit is contained in:
Zach Ramsay
2017-09-22 10:11:22 -04:00
parent 96d2a2c92f
commit 47d6f71e5a
+1 -7
View File
@@ -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