From 5749b7df9830224e70bec811d5f1bfb86bd25393 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 22 Aug 2025 21:38:41 -0500 Subject: [PATCH] allow clippy to take arg --- Justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 1a409d5..9034766 100644 --- a/Justfile +++ b/Justfile @@ -26,8 +26,8 @@ check *ARGS: clean: cargo clean -clippy: - cargo clippy --all-targets --all-features --fix -- -D warnings +clippy *ARGS: + cargo clippy --all-targets --all-features --fix {{ ARGS }} -- -D warnings fmt *ARGS: cargo +nightly fmt {{ ARGS }}