Skip to content

Commit 5280c75

Browse files
committed
feat: support ESLint 8.x
1 parent 841c32c commit 5280c75

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
@@ -24,7 +24,7 @@
2424
"devDependencies": {
2525
"@eslint-community/eslint-plugin-mysticatea": "^15.2.0",
2626
"dot-prop": "^6.0.1",
27-
"eslint": "^7.32.0",
27+
"eslint": "^8.28.0",
2828
"esm": "^3.2.25",
2929
"espree": "github:eslint/espree#1c744b3a602b783926344811a9459b92afe57444",
3030
"mocha": "^8.4.0",
@@ -40,7 +40,7 @@
4040
"warun": "^1.0.0"
4141
},
4242
"peerDependencies": {
43-
"eslint": ">=5"
43+
"eslint": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
4444
},
4545
"scripts": {
4646
"prebuild": "npm run -s clean",

0 commit comments

Comments
 (0)