859828a0f0
* feat: Initialise ES-Lint for cypress
29 lines
623 B
JSON
29 lines
623 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es2021": true,
|
|
"cypress/globals": true
|
|
},
|
|
"plugins": ["cypress"],
|
|
"extends": [
|
|
"google",
|
|
"eslint:recommended",
|
|
"plugin:cypress/recommended",
|
|
"prettier"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"max-len": ["error", { "code": 150 }],
|
|
"valid-jsdoc": "off",
|
|
"cypress/no-assigning-return-values": "error",
|
|
"cypress/no-unnecessary-waiting": "error",
|
|
"cypress/assertion-before-screenshot": "warn",
|
|
"cypress/no-force": "warn",
|
|
"cypress/no-async-tests": "error"
|
|
}
|
|
}
|