mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-26 13:30:53 +00:00
* feat(dev): add pre-commit hooks for ruff, eslint, and prettier * fix: use local uv-based ruff hooks and uv run for pre-commit install Agent-Logs-Url: https://github.com/bytedance/deer-flow/sessions/a1e34cc5-0d4b-4400-9e6a-e687d964ff1e Co-authored-by: WillemJiang <219644+WillemJiang@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
33 lines
1.1 KiB
YAML
33 lines
1.1 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/
|
|
|
|
# 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]
|