From 4cb907e94916bc2f9a77bc761d3f41eadfdf8339 Mon Sep 17 00:00:00 2001 From: Caleb Evans Date: Sat, 17 Aug 2024 14:03:07 -0700 Subject: [PATCH] Ignore unused variables when linting --- eslint.config.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index eeb7152..07e36e8 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -17,9 +17,6 @@ export default [ parserOptions: { parser: ts.parser } - }, - rules: { - '@typescript-eslint/no-unused-vars': 'off' } }, { @@ -28,6 +25,10 @@ export default [ ...globals.browser, ...globals.node } + }, + rules: { + 'no-unused-vars': 'off', + '@typescript-eslint/no-unused-vars': 'off' } }, {