# Easy way to reformat your code.  You should run `make fix` before you push
fix:
	find . -iname '*.go' -not -path '*/vendor/*' -print0 | xargs -0 gofmt -s -w
	find . -iname '*.go' -not -path '*/vendor/*' -print0 | xargs -0 goimports -w
lint:
	golangci-lint run
