2017-12-14 16:21:45 +00:00
|
|
|
{
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
2018-12-05 00:41:37 +00:00
|
|
|
"extends": ["eslint:recommended", "plugin:import/errors"],
|
2017-12-14 16:21:45 +00:00
|
|
|
"rules": {
|
2019-01-06 00:50:05 +00:00
|
|
|
"no-console": 0,
|
|
|
|
"import/no-unresolved": 0
|
2017-12-14 16:21:45 +00:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"fetch": true,
|
|
|
|
"Promise": true
|
2018-12-05 00:41:37 +00:00
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"react": {
|
2019-01-06 00:50:05 +00:00
|
|
|
"version": "16"
|
|
|
|
},
|
|
|
|
"import/resolver": {
|
|
|
|
"node": {
|
|
|
|
"moduleDirectory": [
|
|
|
|
"node_modules",
|
|
|
|
"functions/node_modules"
|
|
|
|
]
|
|
|
|
}
|
2018-12-05 00:41:37 +00:00
|
|
|
}
|
2017-12-14 16:21:45 +00:00
|
|
|
}
|
|
|
|
}
|