added unused vars ignore patters

This commit is contained in:
Miodec 2022-02-22 22:39:26 +01:00
parent 8dce406786
commit 72ba88a917

View file

@ -70,7 +70,10 @@
"@typescript-eslint/explicit-function-return-type": ["error"],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "error",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^(_|e|event)" }
],
"@typescript-eslint/no-var-requires": "error"
}
// "parserOptions": {