From d92c6ab2e249d57a6ff04a224151debd64cde60f Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Thu, 13 Jul 2023 14:09:58 -0300 Subject: [PATCH] Disable conflicting eslint rules Conflict with prettier --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index e335984fc..473ec616b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,9 +17,10 @@ module.exports = { "@typescript-eslint/no-misused-promises": ["error", {"checksConditionals": false}], "@typescript-eslint/no-redeclare": 0, "@typescript-eslint/no-non-null-assertion": 0, + "@typescript-eslint/member-delimiter-style": 0, "no-return-assign": 0, "no-useless-return": 0, - "quotes": 2, + "quotes": 0, "object-curly-spacing": 2, "n/no-callback-literal": 0, },