settings.json 857 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "permissions": {
  3. "allow": [
  4. ]
  5. },
  6. "enableAllProjectMcpServers": true,
  7. "hooks": {
  8. "SessionStart": [
  9. {
  10. "hooks": [
  11. {
  12. "type": "command",
  13. "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/session-start.sh"
  14. }
  15. ]
  16. }
  17. ],
  18. "PostToolUse": [
  19. {
  20. "matcher": "Write|Edit",
  21. "hooks": [
  22. {
  23. "type": "command",
  24. "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",
  25. "timeout": 30
  26. }
  27. ]
  28. }
  29. ]
  30. },
  31. "enabledPlugins": {
  32. "figma@claude-plugins-official": true,
  33. "mcp-client-skills@growi-mcp-tools": true
  34. }
  35. }