1 2 3 4 5 6 7 8 9 10 11
# Run all tasks all: just fmt clippy # Format the code fmt: cargo fmt --all # Run Clippy for linting clippy: cargo clippy --all -- -D warnings