Skip to content
This repository was archived by the owner on Dec 10, 2020. It is now read-only.

Commit 074994e

Browse files
committed
Turn "no-unused-vars" rule off
1 parent 1305892 commit 074994e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@ module.exports = {
22
extends: "@ethereumjs/eslint-config-defaults",
33
parserOptions: {
44
project: ['./tsconfig.json', './tsconfig.browser.json', './tsconfig.eslint.json']
5+
},
6+
rules: {
7+
// Many methods have been sketched in as stubs & their params trigger this.
8+
// Duplicates the (more tolerant) @typescript-eslint/no-unused-vars
9+
'no-unused-vars': 'off'
510
}
611
}

0 commit comments

Comments
 (0)