eslint-config-neon
Version:
The ultimate ESLint shareable config
19 lines (17 loc) • 444 B
JavaScript
import cypress from "eslint-plugin-cypress";
//#region src/cypress.ts
const config = [{
plugins: { cypress },
rules: {
"cypress/assertion-before-screenshot": 2,
"cypress/no-assigning-return-values": 2,
"cypress/no-async-tests": 2,
"cypress/no-force": 2,
"cypress/no-pause": 2,
"cypress/no-unnecessary-waiting": 2,
"import-x/unambiguous": 0
}
}];
//#endregion
export { config as default };
//# sourceMappingURL=cypress.mjs.map