Skip to content

Commit fe61a40

Browse files
committed
feat: drop support for @typescript-eslint v6
BREAKING CHANGE: dropped support for `@typescript-eslint` v6
1 parent d3bf1dc commit fe61a40

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
matrix:
7575
node-version: [18.x, 20.x, 22.x, 23.x, 24.x]
7676
eslint-version: [8, 9]
77-
ts-eslint-plugin-version: [6, 7, 8]
77+
ts-eslint-plugin-version: [7, 8]
7878
runs-on: ubuntu-latest
7979

8080
steps:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
]
6868
},
6969
"dependencies": {
70-
"@typescript-eslint/utils": "^6.0.0 || ^7.0.0 || ^8.0.0"
70+
"@typescript-eslint/utils": "^7.0.0 || ^8.0.0"
7171
},
7272
"devDependencies": {
7373
"@babel/cli": "^7.4.4",
@@ -115,7 +115,7 @@
115115
"typescript": "^5.0.4"
116116
},
117117
"peerDependencies": {
118-
"@typescript-eslint/eslint-plugin": "^6.0.0 || ^7.0.0 || ^8.0.0",
118+
"@typescript-eslint/eslint-plugin": "^7.0.0 || ^8.0.0",
119119
"eslint": "^8.0.0 || ^9.0.0",
120120
"jest": "*"
121121
},

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5182,7 +5182,7 @@ __metadata:
51825182
ts-node: ^10.2.1
51835183
typescript: ^5.0.4
51845184
peerDependencies:
5185-
"@typescript-eslint/eslint-plugin": ^6.0.0 || ^7.0.0 || ^8.0.0
5185+
"@typescript-eslint/eslint-plugin": ^7.0.0 || ^8.0.0
51865186
eslint: ^8.0.0 || ^9.0.0
51875187
jest: "*"
51885188
peerDependenciesMeta:

0 commit comments

Comments
 (0)