22 lines
415 B
Text
22 lines
415 B
Text
|
|
# Development workflow — format, lint, watch
|
||
|
|
|
||
|
|
[doc("Show dev recipes")]
|
||
|
|
help:
|
||
|
|
@just --list --list-prefix " dev::"
|
||
|
|
|
||
|
|
[doc("Format all code")]
|
||
|
|
fmt:
|
||
|
|
cargo fmt --all
|
||
|
|
|
||
|
|
[doc("Check formatting without modifying files")]
|
||
|
|
fmt-check:
|
||
|
|
cargo fmt --all -- --check
|
||
|
|
|
||
|
|
[doc("Run clippy (strict: -D warnings)")]
|
||
|
|
lint:
|
||
|
|
cargo clippy --all-targets -- -D warnings
|
||
|
|
|
||
|
|
[doc("Clean build artifacts")]
|
||
|
|
clean:
|
||
|
|
cargo clean
|