@michaeljaltamirano/eslint-plugin
Version:
Strongly-opinionated ESLint config
13 lines (12 loc) • 379 B
text/typescript
export const cypress = {
extends: ['plugin:cypress/recommended'],
rules: {
'cypress/no-assigning-return-values': 'error',
'cypress/no-unnecessary-waiting': 'error',
'cypress/assertion-before-screenshot': 'error',
'cypress/no-force': 'error',
'cypress/no-async-tests': 'error',
'cypress/no-pause': 'error',
'cypress/require-data-selectors': 'off',
},
} as const;