eslint-plugin-playwright 2.10.4 → 2.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1112,6 +1112,9 @@ var missing_playwright_await_default = createRule({
|
|
|
1112
1112
|
if (parent.type === "ConditionalExpression") {
|
|
1113
1113
|
return checkValidity(parent, visited);
|
|
1114
1114
|
}
|
|
1115
|
+
if (parent.type === "ChainExpression") {
|
|
1116
|
+
return checkValidity(parent, visited);
|
|
1117
|
+
}
|
|
1115
1118
|
if (parent.type === "SpreadElement") {
|
|
1116
1119
|
return checkValidity(parent, visited);
|
|
1117
1120
|
}
|