#!/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!"