From 60513b844bf07cbfd7354821993d18337e8a8a4b Mon Sep 17 00:00:00 2001 From: yosoyjhork Date: Thu, 22 Jan 2026 13:37:44 +0100 Subject: [PATCH] Add .gitattributes for line ending normalization Added .gitattributes to ensure consistent line endings (LF) across different operating systems, preventing potential syntax issues in Python. --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..6dc00bc8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# Handle line endings automatically +* text=auto + +# Ensure Python files use LF +*.py text eol=lf +*.md text eol=lf