2019-09-05 15:34:14 +12:00
|
|
|
{
|
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
|
"extends": [
|
|
|
|
|
"airbnb"
|
|
|
|
|
],
|
|
|
|
|
"rules": {
|
|
|
|
|
"react/jsx-filename-extension": 0,
|
|
|
|
|
"react/no-danger": 0,
|
|
|
|
|
"no-console": 0,
|
|
|
|
|
"no-underscore-dangle": 0,
|
|
|
|
|
"react/prop-types": 0,
|
2020-07-04 21:39:30 +12:00
|
|
|
"linebreak-style": 0,
|
|
|
|
|
"no-case-declarations": 0,
|
|
|
|
|
"camelcase": 0
|
2019-09-05 15:34:14 +12:00
|
|
|
},
|
|
|
|
|
"globals": {
|
|
|
|
|
"fetch": true
|
|
|
|
|
},
|
|
|
|
|
"env": {
|
|
|
|
|
"jest": true,
|
|
|
|
|
"browser": true,
|
|
|
|
|
"es6": true
|
|
|
|
|
}
|
|
|
|
|
}
|