Skip to content

Commit a5a01eb

Browse files
committed
allow unused params
1 parent 659c1ba commit a5a01eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default [
4747
},
4848
rules: {
4949
semi: ['warn', 'always'],
50-
'no-unused-vars': 'warn',
50+
'no-unused-vars': 'off', //Let '@typescript-eslint/no-unused-vars' catch the errors to allow unused function parameters (ex: in interfaces)
5151
'no-var': 'error',
5252
'import/no-unresolved': 'off',
5353
'import/order': ['warn', { groups: ['builtin', 'parent', 'sibling', 'index', 'external'] }],

0 commit comments

Comments
 (0)