Skip to content

Commit 54d2642

Browse files
committed
feat: support ESLint 8.x
1 parent 8ac38b1 commit 54d2642

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/CI.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,21 @@ jobs:
4444
matrix.os }})
4545
strategy:
4646
matrix:
47-
eslint: [7]
47+
eslint: [8]
4848
node: [12.22.0, 12, 14.17.0, 14, 16, 18]
4949
os: [ubuntu-latest]
5050
include:
5151
# On other platforms
5252
- os: windows-latest
53-
eslint: 7
53+
eslint: 8
5454
node: 18
5555
- os: macos-latest
56-
eslint: 7
56+
eslint: 8
5757
node: 18
5858
# On old ESLint versions
59+
- eslint: 7
60+
node: 18
61+
os: ubuntu-latest
5962
- eslint: 6
6063
node: 18
6164
os: ubuntu-latest

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"devDependencies": {
5252
"@eslint-community/eslint-plugin-mysticatea": "^15.2.0",
5353
"dot-prop": "^6.0.1",
54-
"eslint": "^7.32.0",
54+
"eslint": "^8.28.0",
5555
"esm": "^3.2.25",
5656
"espree": "github:eslint/espree#1c744b3a602b783926344811a9459b92afe57444",
5757
"mocha": "^8.4.0",
@@ -67,7 +67,7 @@
6767
"warun": "^1.0.0"
6868
},
6969
"peerDependencies": {
70-
"eslint": ">=6"
70+
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
7171
},
7272
"engines": {
7373
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"

0 commit comments

Comments
 (0)