Skip to content

Commit c4085a4

Browse files
authored
chore: strict unused check (#3215)
1 parent f831bc8 commit c4085a4

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

eslint.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default tseslint.config(
6767
],
6868
'@typescript-eslint/no-explicit-any': 'off',
6969
'@typescript-eslint/no-unused-vars': [
70-
'warn',
70+
'error',
7171
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
7272
],
7373
'react-hooks/react-compiler': 'error',
@@ -80,7 +80,6 @@ export default tseslint.config(
8080
...vitest.configs.recommended,
8181
rules: {
8282
'import/extensions': ['error', 'never'],
83-
'@typescript-eslint/no-unused-vars': 'off',
8483
'testing-library/no-node-access': 'off',
8584
'vitest/consistent-test-it': [
8685
'error',

0 commit comments

Comments
 (0)