PromucFlow_constructor/app/client/cypress/.eslintrc.json
Valera Melnikov 22e10c6fdb
chore: add strict-boolean-expressions rule (#27852)
## Description
Add `@typescript-eslint/strict-boolean-expressions` eslint rule for
packages.
2023-10-06 16:05:32 +03:00

23 lines
756 B
JSON

{
"extends": ["../.eslintrc.base.json"],
"ignorePatterns": ["locators", "fixtures"],
"env": {
"cypress/globals": true
},
"rules": {
"@typescript-eslint/strict-boolean-expressions": "off",
"@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",
"@typescript-eslint/no-non-null-assertion": "error",
"cypress/unsafe-to-chain-command": "off",
"@typescript-eslint/adjacent-overload-signatures": "off",
"jest/no-disabled-tests": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "off"
}
}