diff --git a/justfile b/justfile index a0f59ca..99d892b 100644 --- a/justfile +++ b/justfile @@ -6,5 +6,17 @@ server: client: cargo tauri dev +fmt: + cargo +nightly fmt + +_fix: + cargo fix + cargo clippy --fix + +fix: _fix fmt + +clippy: + cargo clippy + clean: cargo clean