1 2 3 4 5 6 7
# Format all Rust code in the repository fmt: cargo fmt --all # Check if all Rust code is formatted correctly (useful for CI) fmt-check: cargo fmt --all -- --check