repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-merge-conflict - id: check-toml - id: debug-statements - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. rev: v0.14.8 hooks: # Run the linter. - id: ruff # Run the formatter. - id: ruff-format - repo: local hooks: - id: ty name: ty check entry: uv run ty check language: system types: [python] pass_filenames: false - repo: local hooks: - id: biome name: biome check entry: bash -c 'cd app/frontend && npm run check' language: system files: ^app/frontend/ types_or: [javascript, jsx, ts, tsx, json]