Allow TS args starting with _ to not be used and pass eslint

This commit is contained in:
Eric Schultz 2020-10-20 16:41:11 -05:00 committed by Eric Schultz
parent 0437352faa
commit e491e48374

View file

@ -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": {