From a3aa2a72bc8d6e3d597683732144a4d96a69b014 Mon Sep 17 00:00:00 2001 From: npeter83 Date: Thu, 11 Jun 2026 01:02:06 +0200 Subject: [PATCH] chore: enforce LF line endings via .gitattributes (CRLF for .ps1) --- .gitattributes | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..81f616e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +# Normalize line endings: LF everywhere (so shell scripts work in Linux containers), +# CRLF only for Windows-specific PowerShell scripts. +* text=auto eol=lf + +*.ps1 text eol=crlf + +*.png binary +*.jpg binary +*.ico binary +*.woff binary +*.woff2 binary +*.dump binary