From 814d9ba5123998ce760b7da94d39e266c513eccf Mon Sep 17 00:00:00 2001 From: Iskren Chernev Date: Sat, 16 Dec 2023 22:54:26 +0200 Subject: [PATCH] [misc] Update prettier config For some reason it wanted to put traling commas everywhere (including functions) and that spooks eslint. --- .prettierrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.prettierrc b/.prettierrc index b650f0909..0c502f53a 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,5 @@ { "printWidth": 80, - "singleQuote": true + "singleQuote": true, + "trailingComma": "es5" } -- 2.47.3