This commit is contained in:
Iliyan Angelov
2025-12-10 01:36:00 +02:00
parent 2f6dca736a
commit 6a9e823402
84 changed files with 5293 additions and 1836 deletions

13
frontEnd/.husky/pre-commit Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
# Pre-commit hook to run security checks
echo "Running security checks..."
# Run security scan
npm run security:scan
# Run lint
npm run lint
echo "Security checks passed!"