* fix: Set SR viewport as active by interaction * quick fix * (eslint) add "before" as global variables * add data-cy * add data-cy * create E2E test * (E2E) create custom command to set layout size * remove .only e2e * remove throttle for onScroll
25 lines
378 B
JSON
25 lines
378 B
JSON
{
|
|
"extends": [
|
|
"react-app",
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"jest": true
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"globals": {
|
|
"cy": true,
|
|
"before": true,
|
|
"context": true,
|
|
"Cypress": true,
|
|
"assert": true
|
|
}
|
|
}
|