From: Iskren Chernev Date: Sat, 16 Dec 2023 20:54:26 +0000 (+0200) Subject: [misc] Update prettier config X-Git-Tag: 2.30.0~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=814d9ba5123998ce760b7da94d39e266c513eccf;p=thirdparty%2Fmoment.git [misc] Update prettier config For some reason it wanted to put traling commas everywhere (including functions) and that spooks eslint. --- 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" }