@croct/eslint-plugin
Version:
ESLint rules and presets applied to all Croct JavaScript projects.
22 lines (21 loc) • 580 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.cypress = void 0;
exports.cypress = {
extends: [
'plugin:@croct/javascript',
],
plugins: [
'cypress',
'@croct',
],
rules: {
'no-loop-func': 0,
'cypress/no-assigning-return-values': 'warn',
'cypress/no-unnecessary-waiting': 'error',
'cypress/assertion-before-screenshot': 'warn',
'cypress/no-async-tests': 'error',
'cypress/no-pause': 'error',
'@typescript-eslint/no-namespace': 'off',
},
};