Development
Developing Jaunt
Dev commands for this repository.
From the repo root:
uv sync
uv run ruff check --fix .
uv run ruff format .
uv run ty check
uv run pytestPre-commit Hooks
Enable repository hooks once from the root:
git config core.hooksPath .githooksThe hook runs:
ruff check --fix .ruff format .ty check
If Ruff rewrites files, the hook stops so you can review and re-stage them.
Next: Architecture Notes.