mirror of https://github.com/zulip/zulip.git
eslint: Remove unused exemptions to no-unused-vars rule.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
2c5e9f65f8
commit
40b8943505
|
@ -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",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
"use strict";
|
||||
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
/* global __webpack_public_path__:writable */
|
||||
|
||||
const t1 = performance.now();
|
||||
|
|
Loading…
Reference in New Issue