Browse Source

Added errcheck make task (#242)

for-closed-social
Thomas Boerger 7 years ago
committed by Lunny Xiao
parent
commit
900a21008c
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      Makefile

+ 7
- 0
Makefile View File

@ -51,6 +51,13 @@ fmt:
vet:
go vet $(PACKAGES)
.PHONY: errcheck
errcheck:
@which errcheck > /dev/null; if [ $$? -ne 0 ]; then \
go get -u github.com/kisielk/errcheck; \
fi
errcheck $(PACKAGES)
.PHONY: lint
lint:
@which golint > /dev/null; if [ $$? -ne 0 ]; then \

Loading…
Cancel
Save