Skip to content

Commit dbd8fbc

Browse files
committed
fix(typescript): Disable no-unused-vars rule for .ts files
As recommended in https://typescript-eslint.io/rules/no-unused-vars/
1 parent dc90081 commit dbd8fbc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

configurations/typescript/rules/typescript.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,7 @@ module.exports = {
487487

488488
// Disallow unused variables
489489
// https://typescript-eslint.io/rules/no-unused-vars
490+
'no-unused-vars': 'off',
490491
...extendFromBase('no-unused-vars'),
491492

492493
// Disallow the use of variables before they are defined

0 commit comments

Comments
 (0)