scaffolding

This commit is contained in:
2023-06-10 16:43:20 +02:00
commit 5501b63379
14 changed files with 246 additions and 0 deletions

18
justfile Normal file
View File

@@ -0,0 +1,18 @@
_list:
@just --list
# Check project
check:
just --unstable --fmt --check
cargo fmt --check
taplo fmt --check `fd --extension=toml`
taplo lint `fd --extension=toml`
cargo check
cargo nextest run
nix flake show
# Format project
fmt:
just --unstable --fmt
cargo fmt
taplo fmt `fd --extension=toml`