aboutsummaryrefslogtreecommitdiffhomepage
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-27 01:57:27 +0200
committerThomas Citharel <tcit@tcit.fr>2016-11-15 21:54:41 +0100
commitaf61cb80eb600618df95a01a15a08e87fc878c2a (patch)
tree3e5ba0c9935b5aace5e5c58a8d3fd84621d4b0db /.eslintrc.json
parentf9cded7dd2acab3af8ff8481941e0c199daf8270 (diff)
downloadwallabag-af61cb80eb600618df95a01a15a08e87fc878c2a.tar.gz
wallabag-af61cb80eb600618df95a01a15a08e87fc878c2a.tar.zst
wallabag-af61cb80eb600618df95a01a15a08e87fc878c2a.zip
es6 imports
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 1137e2fc..3aee614f 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -2,7 +2,11 @@
2 "extends": "airbnb-base", 2 "extends": "airbnb-base",
3 "parser": "babel-eslint", 3 "parser": "babel-eslint",
4 "env": { 4 "env": {
5 "browser": true 5 "browser": true,
6 "es6": true
7 },
8 "globals": {
9 "Routing": true
6 }, 10 },
7 "rules": { 11 "rules": {
8 "import/no-extraneous-dependencies": ["error", {"devDependencies": true, "optionalDependencies": true, "peerDependencies": true}] 12 "import/no-extraneous-dependencies": ["error", {"devDependencies": true, "optionalDependencies": true, "peerDependencies": true}]