Skip to content

Commit bad0ecb

Browse files
committed
workflow: temporarily disable no-unused-vars eslint rule for arguments
1 parent 3810de7 commit bad0ecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
'error',
1212
// we are only using this rule to check for unused arguments since TS
1313
// catches unused variables but not args.
14-
{ varsIgnorePattern: '.*', args: 'after-used', argsIgnorePattern: '^_' }
14+
{ varsIgnorePattern: '.*', args: 'none' }
1515
],
1616
// most of the codebase are expected to be env agnostic
1717
'no-restricted-globals': ['error', ...DOMGlobals, ...NodeGlobals],

0 commit comments

Comments
 (0)