Jaunt
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 pytest

Pre-commit Hooks

Enable repository hooks once from the root:

git config core.hooksPath .githooks

The 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.

On this page