From 89b9a2c19e2a1e178c1a637165ffd4e219246333 Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Thu, 10 Aug 2017 21:39:41 -0700 Subject: [PATCH] make fmt * gosimple * unused * gofmt --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 866184e..937a892 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,14 @@ default: build race: @go test -v -race -test.run="TestSimulate_(100op|1000op)" +# go get honnef.co/go/tools/simple +# go get honnef.co/go/tools/unused +fmt: + gosimple ./... + unused ./... + gofmt -l -s -d $(find -name \*.go) + + # go get github.com/kisielk/errcheck errcheck: @errcheck -ignorepkg=bytes -ignore=os:Remove github.com/coreos/bbolt