mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
16 lines
331 B
JavaScript
16 lines
331 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
extends: ['plugin:playwright/recommended'],
|
|
rules: {
|
|
'playwright/max-nested-describe': ['error', { max: 1 }]
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/*.spec.js'], // Added the 'files' property
|
|
rules: {
|
|
'playwright/expect-expect': 'off'
|
|
}
|
|
}
|
|
]
|
|
};
|