diff options
Diffstat (limited to '.eslintrc.json')
| -rw-r--r-- | .eslintrc.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index eba937e..04e16af 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -11,5 +11,9 @@ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended" - ] + ], + "rules": { + "no-unused-vars": "off", + "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }] + } } |
