UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

53 lines (52 loc) 856 B
{ "plugins": [ "cypress", "@cypress/dev" ], "extends": [ "plugin:@cypress/dev/general", "plugin:@cypress/dev/tests", "plugin:@cypress/dev/react" ], "parser": "@typescript-eslint/parser", "env": { "cypress/globals": true }, "globals": { "jest": "readonly" }, "rules": { "no-console": "off", "mocha/no-global-tests": "off", "@typescript-eslint/no-unused-vars": "off", "react/jsx-filename-extension": [ "warn", { "extensions": [ ".js", ".jsx", ".tsx" ] } ] }, "overrides": [ { "files": [ "lib/*" ], "rules": { "no-console": 1 } }, { "files": [ "**/*.json" ], "rules": { "quotes": "off", "comma-dangle": "off" } } ] }