summaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json11
1 files changed, 9 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index d3004e4..48730c9 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -1,5 +1,11 @@
{
- "extends": "eslint:recommended",
+ "extends": [
+ "eslint:recommended",
+ "plugin:es5/no-es2016"
+ ],
+ "plugins": [
+ "es5"
+ ],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8
@@ -11,6 +17,7 @@
},
"rules": {
"no-cond-assign": 0,
- "no-constant-condition": 0
+ "no-constant-condition": 0,
+ "no-prototype-builtins": 0
}
}