mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-07-09 16:08:31 +00:00
Add a uv lock --check guard in two places so a stale uv.lock cannot be committed unnoticed (as happened with the groundroute extra): - pre-commit: a local uv-lock-check hook, scoped to the backend pyproject.toml files and uv.lock. - CI: a "Check uv.lock is in sync" step in the lint-backend job, run before uv sync so the install step cannot mask a stale lock by regenerating it.
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
repos:
|
|
# Backend: ruff lint + format via uv (uses the same ruff version as backend deps)
|
|
- repo: local
|
|
hooks:
|
|
- id: ruff
|
|
name: ruff lint
|
|
entry: bash -c 'cd backend && uv run ruff check --fix "${@/#backend\//}"' --
|
|
language: system
|
|
types_or: [python]
|
|
files: ^backend/
|
|
- id: ruff-format
|
|
name: ruff format
|
|
entry: bash -c 'cd backend && uv run ruff format "${@/#backend\//}"' --
|
|
language: system
|
|
types_or: [python]
|
|
files: ^backend/
|
|
- id: uv-lock-check
|
|
name: uv lock check
|
|
entry: bash -c 'cd backend && uv lock --check'
|
|
language: system
|
|
pass_filenames: false
|
|
files: ^backend/(pyproject\.toml|uv\.lock|packages/harness/pyproject\.toml)$
|
|
|
|
# Frontend: eslint + prettier (must run from frontend/ for node_modules resolution)
|
|
- repo: local
|
|
hooks:
|
|
- id: frontend-eslint
|
|
name: eslint (frontend)
|
|
entry: bash -c 'cd frontend && npx eslint --fix "${@/#frontend\//}"' --
|
|
language: system
|
|
types_or: [javascript, tsx, ts]
|
|
files: ^frontend/
|
|
|
|
- id: frontend-prettier
|
|
name: prettier (frontend)
|
|
entry: bash -c 'cd frontend && npx prettier --write "${@/#frontend\//}"' --
|
|
language: system
|
|
files: ^frontend/
|
|
types_or: [javascript, tsx, ts, json, css]
|