summaryrefslogtreecommitdiffhomepage
path: root/scripts/hooks
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/hooks')
-rwxr-xr-xscripts/hooks15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/hooks b/scripts/hooks
deleted file mode 100755
index 4597c6f41..000000000
--- a/scripts/hooks
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-if [ ! -d ".git" ]; then
- exit 0
-fi
-
-mkdir -p .git/hooks
-
-cat > .git/hooks/pre-push << 'EOF'
-#!/bin/sh
-bun run typecheck
-EOF
-
-chmod +x .git/hooks/pre-push
-echo "✅ Pre-push hook installed"