From dbbb0c70f971eeed3a87a08e1431e165a62647f9 Mon Sep 17 00:00:00 2001 From: debont80 Date: Thu, 2 Jul 2026 11:13:07 -0400 Subject: [PATCH] chore(format): endOfLine auto so format:check is stable under git autocrlf Prettier's LF default fought git's CRLF checkout on Windows, failing format:check on every file with no real diff. 'auto' keeps whatever the checkout uses; content style is unchanged. Co-Authored-By: Claude Fable 5 --- .prettierrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.prettierrc b/.prettierrc index baa9d29..5ed3b06 100644 --- a/.prettierrc +++ b/.prettierrc @@ -2,5 +2,6 @@ "semi": false, "singleQuote": true, "printWidth": 100, - "trailingComma": "none" + "trailingComma": "none", + "endOfLine": "auto" }