Prepare lint exceptions for upcoming btcjson merge.

This commit is contained in:
Dave Collins 2015-02-19 11:22:02 -06:00
parent 4cee2a48cc
commit 2519ff2856

View File

@ -12,7 +12,7 @@ set -e
# Automatic checks
test -z $(gofmt -l -w . | tee /dev/stderr)
test -z $(goimports -l -w . | tee /dev/stderr)
test -z $(golint ./... | grep -v "ALL_CAPS" | grep -v "OP_" | grep -v "NewFieldVal" | tee /dev/stderr)
test -z $(golint ./... | grep -v "ALL_CAPS\|OP_\|NewFieldVal\|Id\|RpcCommand\|RpcRawCommand\|RpcSend\|Dns" | tee /dev/stderr)
go tool vet -structtags=false .
env GORACE="halt_on_error=1" go test -v -race ./...