change ruleset

This commit is contained in:
John Hill 2024-03-12 11:24:14 -07:00
parent 82326dc658
commit 8933baf103
2 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,8 @@ module.exports = {
browser: true,
es6: true,
jasmine: true,
amd: true
amd: true,
node: true
},
globals: {
_: 'readonly'

View File

@ -1,6 +1,6 @@
/* eslint-disable no-undef */
module.exports = {
extends: ['plugin:playwright/playwright-test'],
extends: ['plugin:playwright/recommended'],
rules: {
'playwright/max-nested-describe': ['error', { max: 1 }]
},