mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
caa7bc6fae
* style: apply prettier formatting * fix: re-enable lint ci check
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
extends: ['plugin:playwright/playwright-test'],
|
|
rules: {
|
|
'playwright/max-nested-describe': ['error', { max: 1 }]
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['tests/visual/*.spec.js'],
|
|
rules: {
|
|
'playwright/no-wait-for-timeout': 'off'
|
|
}
|
|
}
|
|
]
|
|
};
|