Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[private]
default:
@just --list

# Format all code
format:
cargo +nightly fmt

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A clippy alias matching CI would also be helpful:

cargo +stable clippy --all-features --workspace --all-targets

# Update generated CLI help (cli/tests/cli-reference@.md.snap)
update-cli-reference:
cargo insta test --accept --workspace -- test_generate_md_cli_help

# Preview documentation with live reloading
[group('docs')]
serve-docs:
uv run mkdocs serve

# Build documentation into rendered-docs/ for offline use
[group('docs')]
build-docs:
uv run mkdocs build -f mkdocs-offline.yml