From 7d26bf432ee6f35642feac7c39a8b62e097e221c Mon Sep 17 00:00:00 2001 From: anna-mat <128937217+anna-mat@users.noreply.github.com> Date: Wed, 30 Oct 2024 15:02:51 -0400 Subject: [PATCH] Update .eslintrc to change order of rules and ensure comma-dangle rule is off --- .eslintrc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.eslintrc b/.eslintrc index 2712075e2b..30199411c2 100644 --- a/.eslintrc +++ b/.eslintrc @@ -2,12 +2,13 @@ "extends": [ "nodebb", - "prettier" + "prettier", + "eslint-config-prettier" ], "rules": { - "no-bitwise": "off", "comma-dangle": "off", - "no-unused-vars": "off", - "no-useless-concat": "off" + "no-bitwise": "off", + "no-unused-vars": "off", + "no-useless-concat": "off" } }