From 8b5182b931f034d27b96358414e4cc8d8da41e3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?POL=20Micka=C3=ABl?= Date: Mon, 6 Apr 2026 08:46:11 +0200 Subject: [PATCH] chore: ajout .gitattributes pour normaliser les fins de ligne MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixe les différences LF/CRLF entre WSL et Windows. Tous les fichiers texte sont normalisés en LF dans le repo. Co-Authored-By: Claude Opus 4.6 --- .gitattributes | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f4499bf --- /dev/null +++ b/.gitattributes @@ -0,0 +1,19 @@ +# Normalise les fins de ligne : LF dans le repo, natif en working copy +* text=auto eol=lf + +# Fichiers texte explicites +*.ts text eol=lf +*.js text eol=lf +*.json text eol=lf +*.css text eol=lf +*.html text eol=lf +*.md text eol=lf +*.yml text eol=lf +*.yaml text eol=lf + +# Binaires — pas de conversion +*.ico binary +*.png binary +*.jpg binary +*.exe binary +*.node binary