40 lines
819 B
JSON
40 lines
819 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es6": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"plugin:react/recommended", "standard", "standard-react"
|
||
|
],
|
||
|
"globals": {
|
||
|
"Atomics": "readonly",
|
||
|
"SharedArrayBuffer": "readonly",
|
||
|
"describe": "readonly",
|
||
|
"it": "readonly",
|
||
|
"before": "readonly",
|
||
|
"after": "readonly",
|
||
|
"beforeEach": "readonly",
|
||
|
"afterEach": "readonly"
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
},
|
||
|
"ecmaVersion": 2018,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react", "babel"
|
||
|
],
|
||
|
"parser": "babel-eslint",
|
||
|
"rules": {
|
||
|
"jest/valid-describe": 0
|
||
|
},
|
||
|
"settings": {
|
||
|
"react": {
|
||
|
"version": "detect"
|
||
|
}
|
||
|
}
|
||
|
}
|