From 05cac57f3a0b429df4a5f8f6611ab6508f4b6e5a Mon Sep 17 00:00:00 2001 From: ddidderr Date: Sat, 13 Jun 2026 09:50:23 +0200 Subject: [PATCH] justfile: harden clippy and tests --- justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index eac8f96..ca3e369 100644 --- a/justfile +++ b/justfile @@ -23,16 +23,16 @@ fmt: just --fmt _fix: - cargo fix - cargo clippy --fix + cargo fix --workspace --all-targets --all-features + cargo clippy --workspace --all-targets --all-features --fix fix: _fix fmt clippy: - cargo clippy + cargo clippy --workspace --all-targets --all-features -- -D warnings test: - cargo test --workspace + cargo test --workspace --all-targets --all-features frontend-test: cd crates/lanspread-tauri-deno-ts && deno test --unstable-sloppy-imports tests