30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
const rulesDirPlugin = require( 'eslint-plugin-rulesdir' );
|
|
rulesDirPlugin.RULES_DIR = `${ __dirname }/wc-blocks-eslint-rules`;
|
|
|
|
const config = {
|
|
extends: [ '../../.eslintrc.js', 'plugin:playwright/recommended' ],
|
|
plugins: [ 'rulesdir' ],
|
|
rules: {
|
|
'playwright/expect-expect': 'error',
|
|
'playwright/max-nested-describe': 'error',
|
|
'playwright/missing-playwright-await': 'error',
|
|
'playwright/no-conditional-in-test': 'error',
|
|
'playwright/no-element-handle': 'error',
|
|
'playwright/no-eval': 'error',
|
|
'playwright/no-focused-test': 'error',
|
|
'playwright/no-force-option': 'error',
|
|
'playwright/no-nested-step': 'error',
|
|
'playwright/no-networkidle': 'error',
|
|
'playwright/no-page-pause': 'error',
|
|
'playwright/no-skipped-test': 'error',
|
|
'playwright/no-useless-await': 'error',
|
|
'playwright/no-useless-not': 'error',
|
|
'playwright/no-wait-for-timeout': 'error',
|
|
'playwright/prefer-web-first-assertions': 'error',
|
|
'playwright/valid-expect': 'error',
|
|
'rulesdir/no-raw-playwright-test-import': 'error',
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|