This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-28 11:09:30 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2020-03-05 10:37:50 +00:00
|
|
|
"es6": true,
|
|
|
|
"cypress/globals": true,
|
|
|
|
"node": true
|
2020-02-28 11:09:30 +00:00
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"prettier",
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:react/recommended"
|
|
|
|
],
|
2020-03-05 10:37:50 +00:00
|
|
|
"settings": {
|
|
|
|
"react": {
|
|
|
|
"version": "detect"
|
|
|
|
}
|
|
|
|
},
|
2020-02-28 11:09:30 +00:00
|
|
|
"parserOptions": {
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"ecmaVersion": 2018,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
2020-03-05 10:37:50 +00:00
|
|
|
"react",
|
|
|
|
"cypress"
|
2020-02-28 11:09:30 +00:00
|
|
|
]
|
|
|
|
}
|