initial version (alpha)

This commit is contained in:
Danny Morabito 2025-10-12 13:10:06 -05:00
commit d16d7a128f
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
57 changed files with 11087 additions and 0 deletions

21
.githooks/pre-commit Executable file
View file

@ -0,0 +1,21 @@
#!/bin/sh
clear
echo "Running Biome format..."
bunx @biomejs/biome format --write
if [ $? -ne 0 ]; then
echo "❌ Biome format failed. Commit rejected."
exit 1
fi
echo "Running Biome check on staged files..."
bunx @biomejs/biome check --staged --error-on-warnings --no-errors-on-unmatched
if [ $? -ne 0 ]; then
exit 1
fi
echo "✅ All checks passed. Proceeding with commit."
exit 0