mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-01-13 08:24:50 +00:00
- 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
12 lines
368 B
JSON
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"
|
|
}
|
|
}
|
|
} |