19 lines
341 B
Makefile
19 lines
341 B
Makefile
_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`
|