@peerigon/configs 9.0.0 → 10.0.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ # [10.0.0](https://github.com/peerigon/configs/compare/v9.1.0...v10.0.0) (2025-10-27)
2
+
3
+ ### Features
4
+
5
+ - Update dependencies with breaking changes ([0cc5f8c](https://github.com/peerigon/configs/commit/0cc5f8c0891d5a95c5698a0518817b4a08fc7e69))
6
+
7
+ ### BREAKING CHANGES
8
+
9
+ - Major version bumps in:
10
+
11
+ * eslint-plugin-react-hooks: ^5.2.0 → ^7.0.1
12
+ * eslint-plugin-unicorn: ^60.0.0 → ^62.0.0
13
+ * prettier-plugin-tailwindcss: ^0.6.14 → ^0.7.1
14
+ * semantic-release: ^24.2.9 → ^25.0.1
15
+
16
+ Other updates:
17
+
18
+ - Update Node.js to v22.21.0
19
+ - Update various ESLint plugins and dependencies
20
+ - Update TypeScript and React types
21
+
22
+ # [9.1.0](https://github.com/peerigon/configs/compare/v9.0.0...v9.1.0) (2025-10-16)
23
+
24
+ ### Features
25
+
26
+ - Introduce Playwright specific rules ([aae64ed](https://github.com/peerigon/configs/commit/aae64ed01e83e2424ae417942cdcce32a297165f))
27
+ - Introduce Playwright specific rules ([#174](https://github.com/peerigon/configs/issues/174)) ([b92db4f](https://github.com/peerigon/configs/commit/b92db4f9fbbbcdf8f9841a29f641e945e37a30bb)), closes [#173](https://github.com/peerigon/configs/issues/173)
28
+
1
29
  # [9.0.0](https://github.com/peerigon/configs/compare/v8.1.0...v9.0.0) (2025-10-15)
2
30
 
3
31
  ### Bug Fixes
@@ -0,0 +1,3 @@
1
+ /** @type {import("eslint").Linter.Config[]} */
2
+ export const playwright: import("eslint").Linter.Config[];
3
+ export default playwright;
@@ -0,0 +1,11 @@
1
+ import pluginPlaywright from "eslint-plugin-playwright";
2
+ import { globPatterns } from "../lib/glob-patterns.js";
3
+ const files = globPatterns.tests;
4
+ /** @type {import("eslint").Linter.Config[]} */
5
+ export const playwright = [
6
+ {
7
+ ...pluginPlaywright.configs["flat/recommended"],
8
+ files,
9
+ },
10
+ ];
11
+ export default playwright;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerigon/configs",
3
- "version": "9.0.0",
3
+ "version": "10.0.0",
4
4
  "description": "Configs for ESLint, Prettier, TypeScript & friends",
5
5
  "keywords": [
6
6
  "eslint",
@@ -27,6 +27,7 @@
27
27
  "./eslint/presets/typescript-node": "./dist/eslint/presets/typescript-node.js",
28
28
  "./eslint/presets/typescript-react": "./dist/eslint/presets/typescript-react.js",
29
29
  "./eslint/presets/typescript": "./dist/eslint/presets/typescript.js",
30
+ "./eslint/rules/playwright": "./dist/eslint/rules/playwright.js",
30
31
  "./eslint/rules/tanstack-query": "./dist/eslint/rules/tanstack-query.js",
31
32
  "./eslint/rules/vitest": "./dist/eslint/rules/vitest.js",
32
33
  "./eslint/styles/jsx-no-literals": "./dist/eslint/styles/jsx-no-literals.js",
@@ -69,9 +70,9 @@
69
70
  "release": "semantic-release"
70
71
  },
71
72
  "dependencies": {
72
- "@eslint-react/eslint-plugin": "^2.0.5",
73
+ "@eslint-react/eslint-plugin": "^2.2.4",
73
74
  "@eslint/compat": "^1.4.0",
74
- "@eslint/js": "^9.32.0",
75
+ "@eslint/js": "^9.38.0",
75
76
  "@ianvs/prettier-plugin-sort-imports": "^4.7.0",
76
77
  "@prettier/plugin-oxc": "^0.0.4",
77
78
  "@sebbo2002/semantic-release-jsr": "^3.0.1",
@@ -80,40 +81,41 @@
80
81
  "@semantic-release/git": "^10.0.1",
81
82
  "@tanstack/eslint-plugin-query": "^5.91.1",
82
83
  "@types/eslint-config-prettier": "^6.11.3",
83
- "@types/eslint-plugin-jsx-a11y": "^6.10.0",
84
- "@vitest/eslint-plugin": "^1.3.5",
84
+ "@types/eslint-plugin-jsx-a11y": "^6.10.1",
85
+ "@vitest/eslint-plugin": "^1.3.25",
85
86
  "eslint-config-prettier": "^10.1.8",
86
87
  "eslint-plugin-jsx-a11y": "^6.10.2",
87
88
  "eslint-plugin-no-only-tests": "^3.3.0",
89
+ "eslint-plugin-playwright": "^2.2.2",
88
90
  "eslint-plugin-prefer-arrow": "^1.2.3",
89
91
  "eslint-plugin-react": "^7.37.5",
90
92
  "eslint-plugin-react-compiler": "^19.1.0-rc.2",
91
- "eslint-plugin-react-hooks": "^5.2.0",
92
- "eslint-plugin-react-refresh": "^0.4.20",
93
- "eslint-plugin-react-you-might-not-need-an-effect": "^0.5.5",
94
- "eslint-plugin-unicorn": "^60.0.0",
95
- "globals": "^16.3.0",
93
+ "eslint-plugin-react-hooks": "^7.0.1",
94
+ "eslint-plugin-react-refresh": "^0.4.24",
95
+ "eslint-plugin-react-you-might-not-need-an-effect": "^0.6.1",
96
+ "eslint-plugin-unicorn": "^62.0.0",
97
+ "globals": "^16.4.0",
96
98
  "prettier-plugin-css-order": "^2.1.2",
97
99
  "prettier-plugin-jsdoc": "^1.3.3",
98
100
  "prettier-plugin-packagejson": "^2.5.19",
99
- "prettier-plugin-tailwindcss": "^0.6.14",
100
- "typescript-eslint": "^8.41.0"
101
+ "prettier-plugin-tailwindcss": "^0.7.1",
102
+ "typescript-eslint": "^8.46.2"
101
103
  },
102
104
  "devDependencies": {
103
105
  "@types/jest": "^30.0.0",
104
- "@types/node": "^24.3.0",
105
- "@types/react": "^19.1.12",
106
+ "@types/node": "^24.9.1",
107
+ "@types/react": "^19.2.2",
106
108
  "@types/signale": "^1.4.7",
107
- "eslint": "^9.36.0",
109
+ "eslint": "^9.38.0",
108
110
  "husky": "^9.1.7",
109
- "lint-staged": "^16.2.3",
111
+ "lint-staged": "^16.2.6",
110
112
  "npm-run-all2": "^8.0.4",
111
113
  "pin-github-action": "^3.4.0",
112
114
  "prettier": "^3.6.2",
113
- "react": "^19.1.1",
115
+ "react": "^19.2.0",
114
116
  "rimraf": "^6.0.1",
115
- "semantic-release": "^24.2.9",
116
- "typescript": "^5.9.2"
117
+ "semantic-release": "^25.0.1",
118
+ "typescript": "^5.9.3"
117
119
  },
118
120
  "peerDependencies": {
119
121
  "eslint": "^9.21.0",