From 975a528b49f58c626c5a5adc9755ab746003fc58 Mon Sep 17 00:00:00 2001 From: louiscklaw Date: Mon, 12 May 2025 13:29:40 +0800 Subject: [PATCH] ``` update prettier config to enforce LF line endings and ES5 trailing commas ``` --- .prettierrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.prettierrc b/.prettierrc index 302e2a1..e18b0cf 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,9 +1,10 @@ { + "endOfLine": "lf", "printWidth": 120, "quoteProps": "consistent", "semi": true, "singleQuote": true, "tabWidth": 2, - "trailingComma": "all", + "trailingComma": "es5", "plugins": [] }