2021-02-16 10:29:08 +00:00
|
|
|
{
|
2023-05-22 12:55:46 +00:00
|
|
|
"extends": ["../.eslintrc.base.json"],
|
2023-10-06 13:05:32 +00:00
|
|
|
"ignorePatterns": ["locators", "fixtures"],
|
2021-02-16 10:29:08 +00:00
|
|
|
"env": {
|
|
|
|
|
"cypress/globals": true
|
|
|
|
|
},
|
2021-04-23 05:43:13 +00:00
|
|
|
"rules": {
|
2023-10-09 13:54:06 +00:00
|
|
|
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
2023-10-06 13:05:32 +00:00
|
|
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
2023-03-23 11:32:18 +00:00
|
|
|
"@typescript-eslint/no-array-constructor": "off",
|
|
|
|
|
"@typescript-eslint/no-namespace": "off",
|
|
|
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
|
|
|
"cypress/no-unnecessary-waiting": "off",
|
|
|
|
|
"no-console": "off",
|
|
|
|
|
"prefer-const": "off",
|
2023-05-11 18:45:06 +00:00
|
|
|
"@typescript-eslint/no-non-null-assertion": "error",
|
|
|
|
|
"cypress/unsafe-to-chain-command": "off",
|
2023-06-07 08:37:46 +00:00
|
|
|
"@typescript-eslint/adjacent-overload-signatures": "off",
|
2023-08-07 12:38:48 +00:00
|
|
|
"jest/no-disabled-tests": "off",
|
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
2024-09-18 16:35:28 +00:00
|
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
|
|
|
"padding-line-between-statements": "off"
|
2023-06-06 13:59:03 +00:00
|
|
|
}
|
2023-03-20 17:20:44 +00:00
|
|
|
}
|