From 36ac79351f90ba2631d4bed2bc1119eb6a68b238 Mon Sep 17 00:00:00 2001 From: Brooooooklyn Date: Tue, 17 Dec 2024 03:08:11 +0000 Subject: [PATCH] chore: disable no-dupe-args rule (#9169) --- eslint.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index e5dfce3cc..04b636602 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -69,6 +69,8 @@ export default tseslint.config( ...react.configs.recommended.rules, ...react.configs['jsx-runtime'].rules, ...reactHooks.configs.recommended.rules, + // covered by TypeScript + 'no-dupe-args': 'off', // the following rules are disabled because they are covered by oxlint 'array-callback-return': 'off', 'constructor-super': 'off',