diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-10-04 16:26:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 16:26:50 +0200 |
commit | 57386125abc5c50c1438cf7e78d01f06021adc0a (patch) | |
tree | d3f26102f9697247c93ac69db6000d15e96fbb23 /.eslintrc.json | |
parent | f2ab290f0fc8a2909bb490e0ed2d91a677a95cc4 (diff) | |
parent | c10adc1f762d004350a7921250c6821baa866e2d (diff) | |
download | wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.tar.gz wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.tar.zst wallabag-57386125abc5c50c1438cf7e78d01f06021adc0a.zip |
Merge pull request #2353 from wallabag/assets-fix
Basically, fix everything
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 | } |