Skip to content

Commit 1363472

Browse files
committed
chore: fix linter issues
1 parent 8b47655 commit 1363472

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

cypress/e2e/common.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ Cypress.on('uncaught:exception', (err) => {
99
const errMsg = err.toString()
1010
if (
1111
errMsg.match(/ResizeObserver loop limit exceeded/) ||
12-
errMsg.match(/ResizeObserver loop completed with undelivered notifications/)
12+
errMsg.match(
13+
/ResizeObserver loop completed with undelivered notifications/
14+
)
1315
) {
1416
return false
1517
}

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
"license": "BSD-3-Clause",
1414
"author": "Viktor Varland <[email protected]>",
1515
"contributors": [
16-
{ "name": "Jan-Gerke Salomon", "email": "[email protected]" }
16+
{
17+
"name": "Jan-Gerke Salomon",
18+
"email": "[email protected]"
19+
}
1720
],
1821
"scripts": {
1922
"setup": "./scripts/setup.js",

0 commit comments

Comments
 (0)