From e358f9cb495481df1492c31217927d9f7d213911 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 13 May 2026 11:36:35 +0200 Subject: [PATCH] chore: add .gitattributes for LF on YAML (avoid EOL merge noise) --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..506e0f0 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# Detect text files and normalize line endings in the index (cross‑platform). +* text=auto + +# YAML / CI: always LF so Linux runners and merges match Windows checkouts. +*.yml text eol=lf +*.yaml text eol=lf