From c18055134867a0e940418c98d0e08fe296085b59 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 2 Nov 2016 23:53:07 -0500 Subject: [PATCH] build: Add gosimple linter to goclean.sh. This modifies the goclean.sh script to include the gosimple lint tool to the gometalinter configuration. --- goclean.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/goclean.sh b/goclean.sh index e7fc4457..dd3f866d 100755 --- a/goclean.sh +++ b/goclean.sh @@ -16,6 +16,7 @@ test -z "$(gometalinter --disable-all \ --enable=gofmt \ --enable=golint \ --enable=vet \ +--enable=gosimple \ --deadline=20s $(glide novendor) | grep -v 'ALL_CAPS\|OP_' 2>&1 | tee /dev/stderr)" env GORACE="halt_on_error=1" go test -v -race -tags rpctest $(glide novendor)