Skip to content

Commit 67651a3

Browse files
committed
Add support for any newer version of @stylistic/eslint-plugin
1 parent 678c473 commit 67651a3

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [3.4.0] - 2025-02-22
8+
#### Added
9+
* Support any version of `@stylistic/eslint-plugin` newer than 3.0. This allows this library to continue working even if they release major versions (which happens frequently).
10+
11+
If a new major versions becomes incompatible for any reason, dependabot will highlight it.
12+
13+
#### Changed
14+
* *Nothing*
15+
16+
#### Deprecated
17+
* *Nothing*
18+
19+
#### Removed
20+
* Drop support for ESLint 8.
21+
22+
#### Fixed
23+
* *Nothing*
24+
25+
726
## [3.3.0] - 2025-01-31
827
#### Added
928
* Update to `@stylistic/eslint-plugin` 3.0

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"build": "mkdir -p dist && rm -rf dist/* && cp index.js dist"
2424
},
2525
"peerDependencies": {
26-
"@stylistic/eslint-plugin": "^3.0.1",
27-
"eslint": "^9.10.0 || ^8.57.0",
26+
"@stylistic/eslint-plugin": ">=3.0.1",
27+
"eslint": "^9.20.1",
2828
"eslint-plugin-jsx-a11y": "^6.8.0",
2929
"eslint-plugin-react": "^7.34.2",
30-
"eslint-plugin-react-hooks": "^5.0.0 || ^4.6.2",
30+
"eslint-plugin-react-hooks": "^5.0.0",
3131
"eslint-plugin-simple-import-sort": "^12.1.0",
32-
"typescript-eslint": "^8.0"
32+
"typescript-eslint": "^8.20"
3333
},
3434
"devDependencies": {
3535
"typescript": "^5.7.3"

0 commit comments

Comments
 (0)