diff --git a/Makefile b/Makefile index 3ab8534cc..9c1c14384 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all build build-rust build-go test format +.PHONY: all build build-rust build-go test # Builds the Rust library libwasmvm BUILDERS_PREFIX := cosmwasm/go-ext-builder:0014 @@ -131,6 +131,6 @@ test-alpine: release-build-alpine .PHONY: format format: - find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs gofumpt -w -s - find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs misspell -w - find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs goimports -w -local github.com/igelax/tgrade-tools + find . -name '*.go' -type f | xargs gofumpt -w -s + find . -name '*.go' -type f | xargs misspell -w + find . -name '*.go' -type f | xargs goimports -w -local github.com/CosmWasm/wasmvm