aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 05f6b6e..28ad4a9 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,7 +1,8 @@
module.exports = {
"env": {
"browser": true,
- "es6": true
+ "es6": true,
+ "node": true
},
"extends": "eslint:recommended",
"rules": {
@@ -14,7 +15,8 @@ module.exports = {
"no-console": 0
},
"parserOptions": {
- "ecmaVersion": 2017
+ "ecmaVersion": 9,
+ "sourceType": "module"
},
"globals": {
"$log": function(){},
@@ -22,6 +24,7 @@ module.exports = {
"_apps": {}
},
"$window": function(){},
- "$alert": function(){}
+ "$alert": function(){},
+ "pkg93": {}
}
};