2018-06-27 11:48:55 +00:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"airbnb"],
|
2018-07-09 14:28:31 +00:00
|
|
|
"parser": "babel-eslint",
|
2018-06-27 11:48:55 +00:00
|
|
|
"rules": {
|
|
|
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
|
|
|
"no-console": "error",
|
|
|
|
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }]
|
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"fetch": false,
|
|
|
|
"it": false,
|
|
|
|
"describe": false,
|
|
|
|
"expect": false,
|
|
|
|
"afterEach": false,
|
|
|
|
"jest": false
|
|
|
|
}
|
|
|
|
}
|