aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-11-22 11:31:41 -0800
committerBryan Newbold <bnewbold@robocracy.org>2022-11-22 11:31:41 -0800
commit35790cec824fb8d24ec93a8345f226f5367822ad (patch)
treee9aaacf4d6c7114c658aa679e1e7d26b77f19fd4
parentf1b80f13f9408db9f76410c717d67d4f9cf7ed2a (diff)
downloadadenosine-35790cec824fb8d24ec93a8345f226f5367822ad.tar.gz
adenosine-35790cec824fb8d24ec93a8345f226f5367822ad.zip
makefile: for now, have clippy ignore 'or_fun_call' lint
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 187feee..c510c8b 100644
--- a/Makefile
+++ b/Makefile
@@ -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