haiku.rag/.pre-commit-config.yaml
2026-01-16 15:03:41 +02:00

31 lines
777 B
YAML

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: https://github.com/RobertCraigie/pyright-python
rev: v1.1.407
hooks:
- id: pyright
- 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]