orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
31 lines (27 loc) • 523 B
JSON
{
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"extends": [
"standard-jsx"
],
"rules": {
"react/jsx-no-bind": [2, {
"allowArrowFunctions": true,
"allowBind": false,
"ignoreRefs": true
}],
"react/no-did-update-set-state": 2,
"react/no-unknown-property": 2,
"react/prop-types": 2,
"react/react-in-jsx-scope": 2
}
}