diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-10-04 15:30:05 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2016-10-04 15:30:05 +0200 |
commit | 6cb364a2c123b96d245b1ca3c330fd0042c74cd1 (patch) | |
tree | 3a31495e0c230b95885cb91362002b36fdcd5d3c /.eslintrc.json | |
parent | f733d8aaa329cc2115d0c94ffe9a0cedf98759b2 (diff) | |
download | wallabag-6cb364a2c123b96d245b1ca3c330fd0042c74cd1.tar.gz wallabag-6cb364a2c123b96d245b1ca3c330fd0042c74cd1.tar.zst wallabag-6cb364a2c123b96d245b1ca3c330fd0042c74cd1.zip |
use airbnb base rules and update eslint
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index d6279c64..1137e2fc 100644 --- a/.eslintrc.json +++ b/.eslintrc.json | |||
@@ -1,4 +1,10 @@ | |||
1 | { | 1 | { |
2 | "extends": "airbnb", | 2 | "extends": "airbnb-base", |
3 | "parser": "babel-eslint" | 3 | "parser": "babel-eslint", |
4 | "env": { | ||
5 | "browser": true | ||
6 | }, | ||
7 | "rules": { | ||
8 | "import/no-extraneous-dependencies": ["error", {"devDependencies": true, "optionalDependencies": true, "peerDependencies": true}] | ||
9 | } | ||
4 | } | 10 | } |