28 lines
541 B
JSON
28 lines
541 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"plugin:react/recommended",
|
||
|
"standard"
|
||
|
],
|
||
|
"globals": {
|
||
|
"Atomics": "readonly",
|
||
|
"SharedArrayBuffer": "readonly"
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
},
|
||
|
"ecmaVersion": 11,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react"
|
||
|
],
|
||
|
"rules": {
|
||
|
"space-before-function-paren": ["error", "never"],
|
||
|
"react/prop-types": 0
|
||
|
}
|
||
|
}
|