From ac8cf2a64f3b440ef9ee12f560c9f09299330cc1 Mon Sep 17 00:00:00 2001 From: Sam Chung Date: Sun, 29 Sep 2024 11:30:27 +1000 Subject: [PATCH] Update base.js --- base.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base.js b/base.js index b0b91a7..87bdd84 100644 --- a/base.js +++ b/base.js @@ -11,6 +11,9 @@ const ERROR = 2; const baseRules = { // Possible Errors 'no-console': ERROR, + // Disable for Prettier compatibility + // https://github.com/prettier/eslint-config-prettier/pull/34 + 'no-unexpected-multiline': OFF, 'block-scoped-var': ERROR, curly: [ERROR, 'all'], 'default-case': ERROR,