From b9531b633eff2ff2782cbf4b5f9119e4ee31c87e Mon Sep 17 00:00:00 2001 From: Shivam Pilania Date: Mon, 18 May 2026 19:12:29 +0530 Subject: [PATCH] chore: add gitattributes to normalize line endings --- .gitattributes | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..c43849e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +# Normalize line endings for all text files +* text=auto + +# Force LF for code files (prevents CRLF issues on Windows) +*.js text eol=lf +*.ts text eol=lf +*.tsx text eol=lf +*.json text eol=lf +*.css text eol=lf +*.md text eol=lf +*.yml text eol=lf +*.yaml text eol=lf \ No newline at end of file