diff --git a/justfile b/justfile index 0c06cc95..13e5af7c 100644 --- a/justfile +++ b/justfile @@ -2,6 +2,16 @@ default: @just --list --unsorted +# lint all packages +lint: + @just clippy bolt-cli + @just clippy bolt-boost + @just clippy bolt-sidecar + +# lint a package by name +clippy package: + cd {{ package }} && cargo clippy --all-targets --all-features -- -D warnings + # spin up the bolt devnet up: chmod +x ./scripts/start-devnet.sh