Skip to content

Commit ecae0af

Browse files
committed
Makefile: minor fix
1 parent 19e9841 commit ecae0af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,14 @@ lint: fmt lint/golangci-lint ## Run all linters.
7676

7777
.PHONY: fmt
7878
fmt: tools/bin/goimports tools/bin/gofumpt ## Run goimports and gofumpt.
79+
$(call target)
7980
find . -iname "*.go" -not -path "./vendor/**" | xargs -P ${JOBS} ${TOOLS_BIN}/goimports -local=${PKG},$(subst /jsonrpc2,,$(PKG)) -w
8081
find . -iname "*.go" -not -path "./vendor/**" | xargs -P ${JOBS} ${TOOLS_BIN}/gofumpt -s -extra -w
8182

8283
.PHONY: lint/golangci-lint
8384
lint/golangci-lint: tools/bin/golangci-lint .golangci.yml ## Run golangci-lint.
8485
$(call target)
85-
@${TOOLS_BIN}/golangci-lint -j ${JOBS} run $(strip ${GO_LINT_FLAGS}) ./...
86+
${TOOLS_BIN}/golangci-lint -j ${JOBS} run $(strip ${GO_LINT_FLAGS}) ./...
8687

8788

8889
##@ tools

0 commit comments

Comments
 (0)