# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks repos: - repo: local hooks: - id: ruff-check name: ruff check entry: uv run ruff check --force-exclude --fix language: system types_or: [python, pyi] require_serial: true - id: ruff-format name: ruff format entry: uv run ruff format --force-exclude language: system types_or: [python, pyi] require_serial: true