From 9637520d5ef5d96c482dd954c6c2cc76b0759f96 Mon Sep 17 00:00:00 2001 From: Hobie Cunningham <121536171+Hobie1Kenobi@users.noreply.github.com> Date: Mon, 25 May 2026 12:38:35 -0500 Subject: [PATCH] chore: add .gitattributes for cross-platform line ending consistency Co-authored-by: Cursor --- .gitattributes | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..cc755fadd2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,54 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Source code +*.js text eol=lf +*.jsx text eol=lf +*.ts text eol=lf +*.tsx text eol=lf +*.mjs text eol=lf +*.cjs text eol=lf +*.mts text eol=lf +*.cts text eol=lf + +# Web files +*.html text eol=lf +*.css text eol=lf +*.scss text eol=lf +*.less text eol=lf +*.svg text eol=lf + +# Config and data files +*.json text eol=lf +*.yml text eol=lf +*.yaml text eol=lf +*.md text eol=lf +*.txt text eol=lf +*.env text eol=lf +*.env.* text eol=lf + +# Shell scripts +*.sh text eol=lf + +# GitHub Actions +.github/workflows/*.yml text eol=lf + +# Lock files +pnpm-lock.yaml text eol=lf + +# Binary files +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.webp binary +*.woff binary +*.woff2 binary +*.ttf binary +*.eot binary +*.otf binary +*.pdf binary +*.zip binary +*.tar binary +*.gz binary