mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
14 lines
310 B
Makefile
14 lines
310 B
Makefile
_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
|