Skip to content

Commit fc90a52

Browse files
committed
fix: update no-unused-vars rule in ESLint configuration
1 parent 9c21799 commit fc90a52

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

eslint.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ export default [
4848
'@typescript-eslint/explicit-function-return-type': 'off',
4949
'@typescript-eslint/explicit-module-boundary-types': 'off',
5050
'@typescript-eslint/no-explicit-any': 'off',
51+
'@typescript-eslint/no-unused-vars': [
52+
'warn',
53+
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
54+
],
5155
},
5256
},
5357
];

0 commit comments

Comments
 (0)