.eslintrc 447 B

1234567891011121314151617
  1. {
  2. "env": {
  3. "cypress/globals": true,
  4. "node": true
  5. },
  6. "extends": ["../.eslintrc.yml", "plugin:cypress/recommended"],
  7. "plugins": ["cypress"],
  8. "rules": {
  9. "no-console": "off",
  10. "no-namespace": "off",
  11. "no-redeclare": "off",
  12. "promise/catch-or-return": "off",
  13. "promise/no-nesting": "off",
  14. "@typescript-eslint/no-var-requires":"off",
  15. "@typescript-eslint/no-namespace":"off"
  16. }
  17. }