feat: auto fix for unused imports

This commit is contained in:
Anthony Fu
2023-01-29 01:58:08 +01:00
parent 6e750c6000
commit f466ac5446
4 changed files with 32 additions and 3 deletions

View File

@@ -113,8 +113,6 @@ module.exports = {
],
offsetTernaryExpressions: true,
}],
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'no-redeclare': 'off',
'@typescript-eslint/no-redeclare': 'error',
'no-use-before-define': 'off',