Remove megacheck from lint target

This commit is contained in:
Martin Polden 2018-08-27 21:24:28 +02:00
parent fefe371369
commit b821b1efcc
1 changed files with 1 additions and 3 deletions

View File

@ -15,17 +15,15 @@ vet:
go vet ./...
megacheck:
ifdef TRAVIS
megacheck 2> /dev/null; if [ $$? -eq 127 ]; then \
go get -v honnef.co/go/tools/cmd/megacheck; \
fi
megacheck ./...
endif
check-fmt:
bash -c "diff --line-format='%L' <(echo -n) <(gofmt -d -s .)"
lint: check-fmt vet megacheck
lint: check-fmt vet
deps:
go get