diff --git a/justfile b/justfile index b73a68203..22dbfbc9a 100644 --- a/justfile +++ b/justfile @@ -13,6 +13,10 @@ check: lint: cargo +$(cat ./nightly-version) clippy --workspace --all-targets --all-features -- --deny warnings +# Run cargo fmt +fmt: + cargo +$(cat ./nightly-version) fmt --all + # Check the formatting format: cargo +$(cat ./nightly-version) fmt --all --check