@peerigon/configs 8.1.0 → 9.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 +18 -0
- package/dist/eslint/rules/react.js +0 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# [9.0.0](https://github.com/peerigon/configs/compare/v8.1.0...v9.0.0) (2025-10-15)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- remove fixed [@ts-expect-error](https://github.com/ts-expect-error) directives ([213325d](https://github.com/peerigon/configs/commit/213325d3102e9d72ffee6118822b52c7d22128e0))
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **react:** bump @eslint-react/eslint-plugin from 1.52.6 to 2.0.4 ([#171](https://github.com/peerigon/configs/issues/171)) ([ec855ad](https://github.com/peerigon/configs/commit/ec855ad8d553a0b5870e34e883cd3a32bfc52b45))
|
|
10
|
+
|
|
11
|
+
### BREAKING CHANGES
|
|
12
|
+
|
|
13
|
+
- **react:** Potentially breaking change for React users, see https://github.com/Rel1cx/eslint-react/blob/main/CHANGELOG.md#v200-2025-09-26
|
|
14
|
+
|
|
15
|
+
Bumps
|
|
16
|
+
[@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin)
|
|
17
|
+
from 1.52.6 to 2.0.4.
|
|
18
|
+
|
|
1
19
|
# [8.1.0](https://github.com/peerigon/configs/compare/v8.0.0...v8.1.0) (2025-10-15)
|
|
2
20
|
|
|
3
21
|
### Features
|
|
@@ -25,12 +25,10 @@ export const react = [
|
|
|
25
25
|
...reactPlugin.configs.flat["jsx-runtime"],
|
|
26
26
|
files,
|
|
27
27
|
},
|
|
28
|
-
// @ts-expect-error Seems like reactPlugin2's types are broken
|
|
29
28
|
{
|
|
30
29
|
...reactPlugin2.configs.recommended,
|
|
31
30
|
files,
|
|
32
31
|
},
|
|
33
|
-
// @ts-expect-error Seems like reactPlugin2's types are broken
|
|
34
32
|
{
|
|
35
33
|
...reactPlugin2.configs["recommended-type-checked"],
|
|
36
34
|
files,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peerigon/configs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Configs for ESLint, Prettier, TypeScript & friends",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"release": "semantic-release"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@eslint-react/eslint-plugin": "^
|
|
72
|
+
"@eslint-react/eslint-plugin": "^2.0.5",
|
|
73
73
|
"@eslint/compat": "^1.4.0",
|
|
74
74
|
"@eslint/js": "^9.32.0",
|
|
75
75
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|