Skip to content

Commit

Permalink
fix: support ESLint 6 in our configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Marbach committed Jul 1, 2019
1 parent 026b085 commit 59341e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Spotify's base ESLint config",
"main": "index.js",
"peerDependencies": {
"eslint": "5.x"
"eslint": ">=5.x"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"eslint-plugin-react": "^7.14.2"
},
"peerDependencies": {
"eslint": "5.x",
"eslint": ">=5.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": ">=7.7.0 <8"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=1.5 <2",
"@typescript-eslint/parser": ">=1.5 <2",
"eslint": "5.x"
"eslint": ">=5.x"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 59341e3

Please sign in to comment.