From 55ba19b523993c9fe0b229e347e262aa74112182 Mon Sep 17 00:00:00 2001 From: Gajus Kuizinas Date: Sun, 22 Oct 2023 15:05:18 -0600 Subject: [PATCH] feat: disable default-case --- configurations/eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configurations/eslintrc.js b/configurations/eslintrc.js index cd3b012..1f01e5e 100644 --- a/configurations/eslintrc.js +++ b/configurations/eslintrc.js @@ -328,8 +328,8 @@ module.exports = { 'consistent-this': [2, 'self'], 'constructor-super': 2, curly: 2, - 'default-case': 2, - 'default-case-last': 2, + 'default-case': 0, + 'default-case-last': 0, 'default-param-last': 2, 'dot-location': [2, 'property'], 'dot-notation': 2,