aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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