From 9ecac88e09fbdd330ea744a85f490be36396fff7 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Tue, 28 Oct 2025 10:24:45 +0400 Subject: [PATCH] Switch Prettier endOfLine to "auto" (#5545) This is in line with `.gitattributes`, and should give a more pleasant experience on Windows. (cherry picked from commit c0b5fc13939dffbda6332e08f800c3603f4f2994) --- compiler/.prettierrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/.prettierrc.json b/compiler/.prettierrc.json index 58a27f3181..0dbe233e98 100644 --- a/compiler/.prettierrc.json +++ b/compiler/.prettierrc.json @@ -6,6 +6,6 @@ "singleQuote": true, "quoteProps": "as-needed", "bracketSpacing": true, - "endOfLine": "lf", + "endOfLine": "auto", "bracketSameLine": true }