From 0bec23e598459314444cb4bcbe711e8992c330ce 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 6fad165..38300da 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -23,6 +23,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, 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, }, };