From a920e50c287457e13e595ae15f9f71aecdb86ac2 Mon Sep 17 00:00:00 2001 From: another-simple-pixel Date: Wed, 13 May 2026 09:49:19 -0700 Subject: [PATCH] add .gitattributes to enforce LF in Kotlin sources Prevents CRLF from sneaking into .kt files when they get opened in Android Studio on Windows during the dev loop. Without this, the file on disk picks up CRLF after a save, the next edit commits it, and the PR diff inflates with line-ending noise. Co-Authored-By: Claude Opus 4.6 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..2d860aee86 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.kt text eol=lf