Browse Source

Makefile: remove redundant lint

pull/1780/head
Zach Ramsay 7 years ago
parent
commit
47d6f71e5a
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      Makefile

+ 1
- 7
Makefile 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

Loading…
Cancel
Save