diff --git a/lint-all.sh b/lint-all.sh new file mode 100755 index 0000000..c36ffd4 --- /dev/null +++ b/lint-all.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Script pour linter tout le projet et corriger automatiquement les erreurs + +set -e + +echo "🔍 Running ESLint with --fix option..." +npm run lint + +echo "" +echo "✅ Linting completed with auto-fix!" + +