settings.json 505 B

12345678910111213141516171819202122232425262728
  1. {
  2. "hooks": {
  3. "PostToolUse": [
  4. {
  5. "matcher": "Edit|Write|Bash",
  6. "hooks": [
  7. {
  8. "type": "command",
  9. "command": "code-review-graph update --skip-flows",
  10. "timeout": 30
  11. }
  12. ]
  13. }
  14. ],
  15. "SessionStart": [
  16. {
  17. "matcher": "",
  18. "hooks": [
  19. {
  20. "type": "command",
  21. "command": "code-review-graph status",
  22. "timeout": 10
  23. }
  24. ]
  25. }
  26. ]
  27. }
  28. }