@@ -87,6 +87,12 @@ export default [
87
87
files : [ 'e2e/**/*.mjs' ] ,
88
88
rules : {
89
89
...playwright . configs [ 'flat/recommended' ] . rules ,
90
+ 'playwright/no-skipped-test' : [
91
+ 'error' ,
92
+ {
93
+ allowConditional : true ,
94
+ } ,
95
+ ] ,
90
96
} ,
91
97
name : 'eslint/playwright' ,
92
98
} ,
@@ -96,17 +102,21 @@ export default [
96
102
'capitalized-comments' : 'off' ,
97
103
'func-names' : [ 'error' , 'always' , { generators : 'as-needed' } ] ,
98
104
'id-length' : 'off' ,
105
+ 'line-comment-position' : 'off' ,
99
106
'max-lines' : 'off' ,
100
107
'max-lines-per-function' : 'off' ,
101
108
'max-params' : 'off' ,
102
109
'max-statements' : 'off' ,
110
+ 'multiline-comment-style' : 'off' ,
103
111
'no-continue' : 'off' ,
104
112
'no-inline-comments' : 'off' ,
105
113
'no-magic-numbers' : 'off' ,
106
114
'no-param-reassign' : 'off' ,
107
115
'no-plusplus' : 'off' ,
116
+ 'no-shadow' : 'off' ,
108
117
'no-ternary' : 'off' ,
109
- 'no-unused-vars' : [ 'error' , { argsIgnorePattern : '^_$' } ] ,
118
+ 'no-unused-vars' : [ 'error' , { argsIgnorePattern : '^_' } ] ,
119
+ 'no-warning-comments' : 'off' ,
110
120
'one-var' : 'off' ,
111
121
'prefer-destructuring' : [ 'error' , { object : true , array : false } ] ,
112
122
'sort-keys' : 'off' ,
0 commit comments