Allow TS args starting with _ to not be used and pass eslint
This commit is contained in:
parent
0437352faa
commit
e491e48374
1 changed files with 1 additions and 0 deletions
|
@ -75,6 +75,7 @@ module.exports = {
|
|||
"no-trailing-spaces": ["error"],
|
||||
"indent": ["error", "tab", {"SwitchCase": 1}], // we use tabs for accessibility
|
||||
"comma-dangle": ["error", "always-multiline"],
|
||||
"@typescript-eslint/no-unused-vars": ['error', {"args": "all", "argsIgnorePattern": "^_"}],
|
||||
},
|
||||
"settings": {
|
||||
"react": {
|
||||
|
|
Loading…
Reference in a new issue