21 lines
367 B
JSON
21 lines
367 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"prettier",
|
||
|
"eslint:recommended",
|
||
|
"plugin:react/recommended"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
},
|
||
|
"ecmaVersion": 2018,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react"
|
||
|
]
|
||
|
}
|