1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 14:48:08 +02:00

Tighten the vars-argument for the ESLint no-unused-vars rule

Please see https://eslint.org/docs/latest/rules/no-unused-vars#vars
This commit is contained in:
Jonas Jenwald 2022-12-03 11:54:56 +01:00
parent 67e1c37e0f
commit b659bacc43
4 changed files with 8 additions and 7 deletions

View file

@ -159,7 +159,7 @@
"no-undef-init": "error",
"no-undef": ["error", { "typeof": true, }],
"no-unused-vars": ["error", {
"vars": "local",
"vars": "all",
"args": "none",
}],
"no-use-before-define": ["error", {