From 9bb452078d2a99bf0e835526e41b3de8ad3dba21 Mon Sep 17 00:00:00 2001 From: UserMandhapati Date: Sat, 31 Jan 2026 15:10:33 +0100 Subject: [PATCH] chore: add .gitattributes for line endings and language stats Added .gitattributes to ensure consistent LF line endings for Python scripts and improve repository language statistics. --- .gitattributes | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..197fb3da --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +# Handle line endings automatically +* text=auto + +# Ensure Python files use LF line endings +*.py text eol=lf + +# Mark documentation +*.md text + +# Global excludes from linguist +.github/* linguist-documentation