Skip to content

Commit

Permalink
chore(deps): update eslint-plugin-playwright to v1.2.0 (#380)
Browse files Browse the repository at this point in the history
* chore(deps): update eslint-plugin-playwright to v1.2.0

* test(lint): limit the Playwright plugin to Playwright files

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Justin Hall <[email protected]>
  • Loading branch information
renovate[bot] and wKovacs64 authored Feb 19, 2024
1 parent a150386 commit 28f4d76
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
7 changes: 6 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module.exports = {
extends: [
'plugin:wkovacs64/react',
'plugin:wkovacs64/typescript',
'plugin:playwright/playwright-test',
'prettier',
],
rules: {
Expand All @@ -12,4 +11,10 @@ module.exports = {
project: 'tsconfig.json',
},
ignorePatterns: ['vite.config.ts'],
overrides: [
{
files: ['playwright/tests/*.spec.ts'],
extends: ['plugin:playwright/playwright-test'],
},
],
};
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"dev": "vite",
"format": "prettier --cache --write .",
"format:check": "prettier --cache --check .",
"lint": "eslint .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"preview": "vite --host 127.0.0.1 preview",
"test": "npm run test:e2e:open",
"test:e2e:open": "playwright test --ui",
Expand Down Expand Up @@ -50,7 +50,7 @@
"clsx": "2.1.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-plugin-playwright": "1.1.2",
"eslint-plugin-playwright": "1.2.0",
"eslint-plugin-wkovacs64": "16.0.0",
"git-current-commit": "1.1.0",
"hibp": "14.0.3",
Expand Down

0 comments on commit 28f4d76

Please sign in to comment.