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