diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-22 11:31:41 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-11-22 11:31:41 -0800 |
commit | 35790cec824fb8d24ec93a8345f226f5367822ad (patch) | |
tree | e9aaacf4d6c7114c658aa679e1e7d26b77f19fd4 /Makefile | |
parent | f1b80f13f9408db9f76410c717d67d4f9cf7ed2a (diff) | |
download | adenosine-35790cec824fb8d24ec93a8345f226f5367822ad.tar.gz adenosine-35790cec824fb8d24ec93a8345f226f5367822ad.zip |
makefile: for now, have clippy ignore 'or_fun_call' lint
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,7 +11,8 @@ test: build ## Run all tests (requires Cargo.lock up to date) .PHONY: lint lint: ## Run syntax/style checks - cargo clippy -- --no-deps + # for now, allow function calls in '.or()' + cargo clippy -- --no-deps -A clippy::or_fun_call .PHONY: fmt fmt: ## Run syntax re-formatting |