Game Data Cleanup → critical, Tests → high, pre-commit hooks → high, boss battles → low, remaining epics → deferred. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
777 B
777 B
title, status, type, priority, created_at, updated_at
| title | status | type | priority | created_at | updated_at |
|---|---|---|---|---|---|
| Implement pre-commit hooks for linting | todo | task | high | 2026-02-10T12:05:39Z | 2026-02-10T12:05:39Z |
Set up pre-commit hooks to automatically run linting before every commit, catching issues before they reach the pipeline.
Checklist
- Install and configure a pre-commit framework (e.g.
pre-commitfor Python,husky+lint-stagedfor the frontend, or a unified approach) - Add backend hook:
ruff check+ruff format --checkon staged Python files - Add frontend hook:
eslint+tscon staged TS/TSX files - Update CI workflow to replace lint checks with test runs once the test suite is in place
- Document the pre-commit setup in CLAUDE.md or DEPLOYMENT.md