eslint: Remove unused exemptions to no-unused-vars rule.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2020-12-10 19:57:53 -08:00
parent 2c5e9f65f8
commit 40b8943505
2 changed files with 1 additions and 7 deletions

View File

@ -73,13 +73,6 @@
"no-undef-init": "error",
"no-unneeded-ternary": ["error", {"defaultAssignment": false}],
"no-unused-expressions": "error",
"no-unused-vars": [
"error",
{
"vars": "local",
"varsIgnorePattern": "print_elapsed_time|check_duplicate_ids"
}
],
"no-use-before-define": ["error", {"functions": false}],
"no-useless-concat": "error",
"no-useless-constructor": "error",

View File

@ -1,5 +1,6 @@
"use strict";
// eslint-disable-next-line no-unused-vars
/* global __webpack_public_path__:writable */
const t1 = performance.now();