From a387d31f620ac563a153641ef875ce8caf9269e8 Mon Sep 17 00:00:00 2001 From: cesnimda Date: Tue, 30 Jun 2026 16:09:52 +0200 Subject: [PATCH] chore: add .gitattributes to normalize line endings (LF) --- .gitattributes | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..af54a13 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,28 @@ +# Normalize line endings: store everything as LF in the repo. +* text=auto eol=lf + +# Source files — always LF. +*.cs text eol=lf +*.csproj text eol=lf +*.sln text eol=lf +*.props text eol=lf +*.json text eol=lf +*.js text eol=lf +*.jsx text eol=lf +*.ts text eol=lf +*.tsx text eol=lf +*.css text eol=lf +*.html text eol=lf +*.md text eol=lf +*.yml text eol=lf +*.yaml text eol=lf +*.sh text eol=lf +Dockerfile text eol=lf +*.conf text eol=lf + +# Binary files — never touch. +*.png binary +*.jpg binary +*.ico binary +*.pdf binary +*.pfx binary