settings.json 544 B

1234567891011121314151617
  1. {
  2. "hooks": {
  3. "PostToolUse": [
  4. {
  5. "matcher": "Write|Edit",
  6. "hooks": [
  7. {
  8. "type": "command",
  9. "command": "if [[ \"$FILE\" == */apps/* ]] || [[ \"$FILE\" == */packages/* ]]; then REPO_ROOT=$(echo \"$FILE\" | sed 's|/\\(apps\\|packages\\)/.*|/|'); cd \"$REPO_ROOT\" && pnpm biome check --write \"$FILE\" 2>/dev/null || true; fi",
  10. "timeout": 30,
  11. "description": "Auto-format edited files in apps/* and packages/* with Biome"
  12. }
  13. ]
  14. }
  15. ]
  16. }
  17. }