We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d84237 commit fd97e6dCopy full SHA for fd97e6d
Makefile
@@ -251,12 +251,12 @@ tools/custom-gcl: tools/structwrite .custom-gcl.yml
251
.PHONY: lint
252
lint: tidy tools/custom-gcl
253
# revive -config revive.toml -exclude storage/ledger/trie ./...
254
- ./tools/custom-gcl run -v ./...
+ ./tools/custom-gcl run -v $(or $(LINT_PATH),./...)
255
256
.PHONY: fix-lint
257
fix-lint:
258
259
- ./tools/custom-gcl run -v --fix ./...
+ ./tools/custom-gcl run -v --fix $(or $(LINT_PATH),./...)
260
261
# Runs unit tests with different list of packages as passed by CI so they run in parallel
262
.PHONY: ci
0 commit comments