openmct/e2e/.eslintrc.cjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
331 B
JavaScript
Raw Normal View History

/* eslint-disable no-undef */
module.exports = {
2024-03-12 18:24:14 +00:00
extends: ['plugin:playwright/recommended'],
rules: {
'playwright/max-nested-describe': ['error', { max: 1 }]
},
overrides: [
{
files: ['**/*.spec.js'], // Added the 'files' property
2024-02-26 16:59:20 +00:00
rules: {
'playwright/expect-expect': 'off'
}
}
]
};