Skip to content

Commit 152d655

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

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",
@@ -116,7 +116,7 @@
116116
"typescript": "^5.0.4"
117117
},
118118
"peerDependencies": {
119-
"@typescript-eslint/eslint-plugin": "^6.0.0 || ^7.0.0 || ^8.0.0",
119+
"@typescript-eslint/eslint-plugin": "^7.0.0 || ^8.0.0",
120120
"eslint": "^8.0.0 || ^9.0.0",
121121
"jest": "*"
122122
},

yarn.lock

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

0 commit comments

Comments
 (0)