Skip to content

Commit bcb493a

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

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
@@ -57,14 +57,8 @@ jobs:
5757
- eslint: 6
5858
node: 18
5959
os: ubuntu-latest
60-
- eslint: 5
61-
node: 18
62-
os: ubuntu-latest
63-
- eslint: 4
64-
node: 18
65-
os: ubuntu-latest
6660
# On the minimum supported ESLint/Node.js version
67-
- eslint: 4.19.1
61+
- eslint: 6.0.0
6862
node: 12.22.0
6963
os: ubuntu-latest
7064
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)