chore(git): remove pre-commit hooks

- this slows committing down
- it also attaches files to commits where they should not be included which makes history and changed files harder to navigate
This commit is contained in:
peaklabs-dev 2026-01-04 18:31:08 +01:00
parent 5685e0e649
commit a57092cf4c
No known key found for this signature in database
2 changed files with 0 additions and 39 deletions

View file

@ -109,11 +109,6 @@
}
},
"scripts": {
"post-install-cmd": [
"cp -r 'hooks/' '.git/hooks/'",
"php -r \"copy('hooks/pre-commit', '.git/hooks/pre-commit');\"",
"php -r \"chmod('.git/hooks/pre-commit', 0777);\""
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"Illuminate\\Foundation\\ComposerScripts::postUpdate"

View file

@ -1,34 +0,0 @@
#!/bin/sh
# Detect whether /dev/tty is available & functional
if sh -c ": >/dev/tty" >/dev/null 2>/dev/null; then
exec </dev/tty
fi
# Generate service templates and OpenAPI documentation
echo "🔄 Generating service templates..."
php artisan generate:services
echo "📚 Generating OpenAPI documentation..."
php artisan generate:openapi
# Add the generated files to the commit
git add templates/service-templates*.json
git add openapi.json openapi.yaml
echo "✅ Generated files have been added to the commit"
# Get list of stashed PHP files
stashed_files=$(git diff --cached --name-only --diff-filter=ACM -- '*.php')
# If there are no stashed PHP files, exit early
if [ -z "$stashed_files" ]; then
exit 0
fi
# Set files variable to only include stashed PHP files
files="$stashed_files"
$(pwd)/vendor/bin/pint $files -q
if [ $? -eq 0 ]; then
git add $files
fi