Skip to content

Commit be85170

Browse files
feat: drop ESLint v4 & v5 support (#18)
BREAKING CHANGE: Requires ESLint@>=6
1 parent 4517c3f commit be85170

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,8 @@ jobs:
5656
- eslint: 6
5757
node: 18
5858
os: ubuntu-latest
59-
- eslint: 5
60-
node: 18
61-
os: ubuntu-latest
62-
- eslint: 4
63-
node: 18
64-
os: ubuntu-latest
6559
# On the minimum supported ESLint/Node.js version
66-
- eslint: 4.19.1
60+
- eslint: 6.0.0
6761
node: 12.22.0
6862
os: ubuntu-latest
6963
runs-on: ${{ matrix.os }}

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ npm install --save-dev eslint @eslint-community/eslint-plugin-eslint-comments
2727

2828
::: tip Requirements
2929
- Node.js `^12.22.0 || ^14.17.0 || >=16.0.0`
30-
- ESLint `4.19.1` or newer.
30+
- ESLint `^6.0.0 || ^7.0.0`
3131
:::
3232

3333
## 📖 Usage

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lib"
1111
],
1212
"peerDependencies": {
13-
"eslint": ">=4.19.1"
13+
"eslint": "^6.0.0 || ^7.0.0"
1414
},
1515
"dependencies": {
1616
"escape-string-regexp": "^1.0.5",

0 commit comments

Comments
 (0)