Fix ESLint warnings

This commit is contained in:
Michael Jackson
2018-12-04 16:41:37 -08:00
parent 41806b2117
commit fde375782c

19
.eslintrc Normal file
View File

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