From 2519ff285628c9b6126634265b790bc9525f2d3d Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 19 Feb 2015 11:22:02 -0600 Subject: [PATCH] Prepare lint exceptions for upcoming btcjson merge. --- goclean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goclean.sh b/goclean.sh index 553a1604..cdc12113 100755 --- a/goclean.sh +++ b/goclean.sh @@ -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 ./...