From 35790cec824fb8d24ec93a8345f226f5367822ad Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 22 Nov 2022 11:31:41 -0800 Subject: makefile: for now, have clippy ignore 'or_fun_call' lint --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3