Skip to content

Commit

Permalink
Merge branch 'main' into carlos/#1041-create-version-matrix-for-ibc-g…
Browse files Browse the repository at this point in the history
…osdktendermint-versions
  • Loading branch information
crodriguezvega committed Jul 25, 2022
2 parents 28fb9e3 + 492e14d commit 8ac8f9b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ ifeq (,$(findstring nostrip,$(COSMOS_BUILD_OPTIONS)))
BUILD_FLAGS += -trimpath
endif

all: tools build lint test
all: build lint test

# The below include contains the tools and runsim targets.
#include contrib/devtools/Makefile
Expand Down Expand Up @@ -156,7 +156,7 @@ mocks: $(MOCKS_DIR)
$(MOCKS_DIR):
mkdir -p $(MOCKS_DIR)

distclean: clean tools-clean
distclean: clean
clean:
rm -rf \
$(BUILDDIR)/ \
Expand Down Expand Up @@ -337,10 +337,9 @@ lint-fix:
golangci-lint run --fix --out-format=tab --issues-exit-code=0
.PHONY: lint lint-fix

format:
format: goimports
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -path "./tests/mocks/*" -not -name '*.pb.go' | xargs gofmt -w -s
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -path "./tests/mocks/*" -not -name '*.pb.go' | xargs misspell -w
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/statik/statik.go" -not -path "./tests/mocks/*" -not -name '*.pb.go' | xargs goimports -w -local github.com/cosmos/cosmos-sdk
.PHONY: format

goimports:
Expand Down

0 comments on commit 8ac8f9b

Please sign in to comment.