From 1e5b3a6c3e32e902ca238d940f1f1e1df5b217b0 Mon Sep 17 00:00:00 2001 From: mika kuns Date: Sat, 30 May 2026 09:39:19 +0200 Subject: [PATCH] chore: add .gitattributes to normalize line endings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Default to LF, force CRLF for Windows script/solution files, and mark common binary types — silences the CRLF-on-commit warnings. Co-Authored-By: Claude Opus 4.7 --- .gitattributes | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..7b382f8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,16 @@ +* text=auto eol=lf + +*.sln text eol=crlf +*.slnx text eol=crlf +*.cmd text eol=crlf +*.bat text eol=crlf +*.ps1 text eol=crlf + +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.zip binary +*.exe binary +*.dll binary