Clean project: remove test files, debug logs, and add documentation
This commit is contained in:
33
unionflow-server-api/run-checkstyle.bat
Normal file
33
unionflow-server-api/run-checkstyle.bat
Normal file
@@ -0,0 +1,33 @@
|
||||
@echo off
|
||||
echo ========================================
|
||||
echo CHECKSTYLE - CORRECTION COMPLETE
|
||||
echo ========================================
|
||||
echo.
|
||||
|
||||
echo 🔍 Exécution de Checkstyle...
|
||||
mvn checkstyle:check > checkstyle-output.txt 2>&1
|
||||
|
||||
echo.
|
||||
echo 📊 Résultats Checkstyle :
|
||||
type checkstyle-output.txt
|
||||
|
||||
echo.
|
||||
echo ========================================
|
||||
echo ANALYSE DES ERREURS
|
||||
echo ========================================
|
||||
echo.
|
||||
|
||||
echo 🔍 Recherche des violations...
|
||||
findstr /C:"[ERROR]" checkstyle-output.txt > checkstyle-errors.txt
|
||||
findstr /C:"[WARN]" checkstyle-output.txt > checkstyle-warnings.txt
|
||||
|
||||
echo.
|
||||
echo 📋 Erreurs trouvées :
|
||||
type checkstyle-errors.txt
|
||||
|
||||
echo.
|
||||
echo ⚠️ Warnings trouvés :
|
||||
type checkstyle-warnings.txt
|
||||
|
||||
echo.
|
||||
echo ========================================
|
||||
Reference in New Issue
Block a user