From 8e7cbd79bffc81ed3a8b481de2a3fc8a37faa083 Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Tue, 23 Jan 2024 13:32:16 -0800 Subject: [PATCH] update lint config --- .eslintrc.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 1464e32..9e4d5f2 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -18,6 +18,7 @@ module.exports = { 'generator-star-spacing': 0, 'no-unused-vars': [0, { args: 'after-used', vars: 'local' }], 'no-constant-condition': 0, + 'no-dupe-class-members': 0, // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, },