Skip to content

Commit 0cd25a3

Browse files
committed
Breaking: drop support eslint@<4.7
ESLint v4.7.0 changed the behavior about `/* eslint-disable */`-like comments. This plugin should follow the change, but rules cannot know the version of the current running ESLint. So I decided dropping support for `eslint@<4.7`.
1 parent 259b8ba commit 0cd25a3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ node_js:
88

99
env:
1010
- ESLINT_VERSION=4
11-
- ESLINT_VERSION=4.3
12-
- ESLINT_VERSION=3
13-
- ESLINT_VERSION=3.1
11+
- ESLINT_VERSION=4.7
1412

1513
before_script:
1614
- npm i --no-save eslint@$ESLINT_VERSION; true

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": ">=3.1.0"
13+
"eslint": ">=4.7.0"
1414
},
1515
"dependencies": {
1616
"escape-string-regexp": "^1.0.5"

0 commit comments

Comments
 (0)