Fix ESLint warnings

This commit is contained in:
Michael Jackson 2018-12-04 16:41:37 -08:00
parent 41806b2117
commit fde375782c
1 changed files with 6 additions and 4 deletions

View File

@ -3,15 +3,17 @@
"env": { "env": {
"node": true "node": true
}, },
"extends": [ "extends": ["eslint:recommended", "plugin:import/errors"],
"eslint:recommended",
"plugin:import/errors"
],
"rules": { "rules": {
"no-console": 0 "no-console": 0
}, },
"globals": { "globals": {
"fetch": true, "fetch": true,
"Promise": true "Promise": true
},
"settings": {
"react": {
"version": "15"
}
} }
} }