Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.

Commit 206984f

Browse files
committed
🔧 (eslint) ignore unused var prefixed by underscore
1 parent 84a57df commit 206984f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
'@typescript-eslint/explicit-member-accessibility': 'off',
2020
'@typescript-eslint/no-explicit-any': 'off',
2121
'@typescript-eslint/no-empty-interface': 'off',
22+
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
2223
},
2324
settings: {
2425
react: {

0 commit comments

Comments
 (0)