chore: organize justfiles

This commit is contained in:
Jef Roosens 2025-05-17 20:10:23 +02:00
parent 6a8725489e
commit e8a92d7e07
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
4 changed files with 50 additions and 27 deletions

16
backup/Justfile Normal file
View file

@ -0,0 +1,16 @@
build:
cargo build --frozen
alias b := build
test:
cargo test --frozen
alias t := test
check:
cargo fmt --check
cargo clippy \
--frozen \
-- \
--no-deps \
--deny 'clippy::all'
alias c := check