From 0c1348cfb503acb18ee27387545fb79f27b29da9 Mon Sep 17 00:00:00 2001 From: Nick Spinale Date: Tue, 29 Oct 2024 01:54:13 -0700 Subject: [PATCH] Default to running with clippy Signed-off-by: Nick Spinale --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 35ed4afeb..31dd3760d 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,8 @@ ifneq ($(C),) cores_args := --cores $(C) endif +CLIPPY ?= 1 + ifeq ($(CLIPPY),1) nix_clippy_attr_prefix := withClippy. endif