utopia-ui/.claude/settings.json
Anton Tranelis ba4f0a375f feat: add Claude Code hooks and lint checking
- Add pre-PR lint check hooks to prevent CI failures
- Create check-lint.sh script for comprehensive linting
- Configure hooks in .claude/settings.json
- Improve development workflow with automated quality checks
2025-08-05 09:52:00 +02:00

12 lines
368 B
JSON

{
"hooks": {
"pre-pr-create": {
"command": "cd /home/fritz/workspace/utopia-map && ./scripts/check-lint.sh",
"description": "Run linting checks before creating PR"
},
"pre-pr-update": {
"command": "cd /home/fritz/workspace/utopia-map && ./scripts/check-lint.sh",
"description": "Run linting checks before updating PR"
}
}
}