Skip to content

Commit 050d18c

Browse files
committed
Makefile: fix gofumpt flag
Signed-off-by: Koichi Shiraishi <zchee.io@gmail.com>
1 parent 1ced02f commit 050d18c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ lint: fmt lint/golangci-lint ## Run all linters.
7878
fmt: tools/bin/goimportz tools/bin/gofumpt ## Run goimportz and gofumpt.
7979
$(call target)
8080
find . -iname "*.go" -not -path "./vendor/**" | xargs -P ${JOBS} ${TOOLS_BIN}/goimportz -local=${PKG},$(subst /jsonrpc2,,$(PKG)) -w
81-
find . -iname "*.go" -not -path "./vendor/**" | xargs -P ${JOBS} ${TOOLS_BIN}/gofumpt -s -extra -w
81+
find . -iname "*.go" -not -path "./vendor/**" | xargs -P ${JOBS} ${TOOLS_BIN}/gofumpt -extra -w
8282

8383
.PHONY: lint/golangci-lint
8484
lint/golangci-lint: tools/bin/golangci-lint .golangci.yml ## Run golangci-lint.

0 commit comments

Comments
 (0)