From 4b57638f82310187ca6c8257f2075afd89bbffaf Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Sun, 29 Jan 2023 15:15:30 +0100 Subject: [PATCH] fix: disable `@typescript-eslint/no-unused-vars` --- packages/typescript/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/typescript/index.js b/packages/typescript/index.js index beb0595a3d..bef86ada14 100644 --- a/packages/typescript/index.js +++ b/packages/typescript/index.js @@ -171,5 +171,7 @@ module.exports = { '@typescript-eslint/ban-types': 'off', '@typescript-eslint/no-namespace': 'off', '@typescript-eslint/triple-slash-reference': 'off', + // handled by unused-imports/no-unused-imports + '@typescript-eslint/no-unused-vars': 'off', }, }