We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79bc5f9 commit 198dc47Copy full SHA for 198dc47
Makefile
@@ -53,3 +53,10 @@ verify-update: imports update
53
clean:
54
rm -rf _output/
55
.PHONY: clean
56
+
57
+PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
58
+GOLANGCI_LINT = go run -mod=vendor ${PROJECT_DIR}/vendor/github.com/golangci/golangci-lint/v2/cmd/golangci-lint
59
60
+.PHONY: lint
61
+lint:
62
+ ${GOLANGCI_LINT} run
0 commit comments