Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 324 Bytes

File metadata and controls

31 lines (22 loc) · 324 Bytes

Development

Setup

uv sync

Development Commands

# Type check
uv run pyright .

# Lint
uv run ruff check .

# Format
uv run ruff format .

# Auto-fix linting issues
uv run ruff check --fix .

Before Committing

uv run ruff format .
uv run ruff check --fix .
uv run pyright .