aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json13
1 files changed, 12 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 35804775..c0ea7ff9 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -19,7 +19,18 @@
"semi": [2, "always"],
"eqeqeq": [2, "always"],
"one-var": [2, "never"],
- "comma-dangle": [2, "always-multiline"]
+ "comma-dangle": [2, "always-multiline"],
+ "no-restricted-globals": [
+ "error",
+ {
+ "name": "event",
+ "message": "Use local parameter instead."
+ },
+ {
+ "name": "error",
+ "message": "Use local parameter instead."
+ }
+ ]
},
"parserOptions": {
"sourceType": "module"