eslint-plugin-playwright
Advanced tools
Comparing version 0.14.0 to 0.14.3
@@ -26,3 +26,3 @@ "use strict"; | ||
const arg = node.arguments[0]; | ||
if ((0, ast_1.isStringLiteral)(arg, 'networkidle')) { | ||
if (arg && (0, ast_1.isStringLiteral)(arg, 'networkidle')) { | ||
context.report({ messageId, node: arg }); | ||
@@ -29,0 +29,0 @@ } |
{ | ||
"name": "eslint-plugin-playwright", | ||
"description": "ESLint plugin for Playwright testing.", | ||
"version": "0.14.0", | ||
"version": "0.14.3", | ||
"packageManager": "pnpm@8.4.0", | ||
"main": "lib/index.js", | ||
"repository": "https://github.com/playwright-community/eslint-plugin-playwright", | ||
"author": "Max Schmitt <max@schmitt.mx>", | ||
"author": "Mark Skelton <mark@mskelton.dev>", | ||
"contributors": [ | ||
"Mark Skelton <mark@mskelton.dev>" | ||
"Max Schmitt <max@schmitt.mx>" | ||
], | ||
@@ -16,14 +17,7 @@ "license": "MIT", | ||
], | ||
"scripts": { | ||
"build": "tsc --project tsconfig.build.json", | ||
"lint": "eslint .", | ||
"format": "prettier --write .", | ||
"test": "jest", | ||
"ts": "tsc" | ||
}, | ||
"devDependencies": { | ||
"@mskelton/eslint-config": "^8.0.0", | ||
"@types/dedent": "^0.7.0", | ||
"@types/eslint": "^8.4.5", | ||
"@types/estree": "^1.0.0", | ||
"@types/eslint": "^8.40.2", | ||
"@types/estree": "^1.0.1", | ||
"@typescript-eslint/eslint-plugin": "^5.59.11", | ||
@@ -34,10 +28,10 @@ "@typescript-eslint/parser": "^5.59.11", | ||
"eslint-plugin-sort": "^2.10.0", | ||
"jest": "^28.1.3", | ||
"prettier": "^2.7.1", | ||
"ts-jest": "^28.0.7", | ||
"typescript": "^4.7.4" | ||
"jest": "^29.5.0", | ||
"prettier": "^2.8.8", | ||
"ts-jest": "^29.1.0", | ||
"typescript": "^5.1.3" | ||
}, | ||
"peerDependencies": { | ||
"eslint": ">=7", | ||
"eslint-plugin-jest": ">=24" | ||
"eslint-plugin-jest": ">=25" | ||
}, | ||
@@ -48,3 +42,11 @@ "peerDependenciesMeta": { | ||
} | ||
}, | ||
"scripts": { | ||
"build": "tsc --project tsconfig.build.json", | ||
"lint": "eslint .", | ||
"format": "prettier --write .", | ||
"format:check": "prettier --check .", | ||
"test": "jest", | ||
"ts": "tsc" | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
75474