Skip to content

Commit

Permalink
fix: maximum typescript-eslint version is 7
Browse files Browse the repository at this point in the history
Because 8 version is incompatible with current config
  • Loading branch information
o.drapeza authored and SuperOleg39 committed Sep 13, 2024
1 parent 4ea58f5 commit e7f8a16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"dependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/eslint-plugin": "^7.19.1",
"@typescript-eslint/eslint-plugin": ">=6.7.2",
"@typescript-eslint/parser": ">=6.7.2",
"@typescript-eslint/eslint-plugin": ">=6.7.2 <8",
"@typescript-eslint/parser": ">=6.7.2 <8",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/tramvaijs/linters.git"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": ">=6.7.2"
"@typescript-eslint/eslint-plugin": ">=6.7.2 <8"
},
"peerDependencies": {
"eslint": ">=8"
Expand Down

0 comments on commit e7f8a16

Please sign in to comment.