1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00
examples/justfile

14 lines
310 B
Makefile
Raw Permalink Normal View History

2024-08-07 03:04:57 +02:00
_list:
@just --list
# Format project.
[group("lint")]
fmt:
cargo +nightly fmt
fd --type=file --hidden --extension=yml --extension=md --extension=js --exec-batch npx -y prettier --write
# Run Clippy over workspace.
[group("lint")]
clippy:
cargo clippy --workspace --all-targets --all-features