Skip to content
This repository was archived by the owner on Aug 14, 2024. It is now read-only.

Commit 52e7bd5

Browse files
committed
fix: add peer dependencies of eslint-config-airbnb-base
Fixes #274
1 parent d30b7d2 commit 52e7bd5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Make sure you have the regular Airbnb config setup. See [eslint-config-airbnb](h
1414

1515
```bash
1616
npm install eslint-config-airbnb-typescript \
17+
eslint@^8.0.0 \
18+
eslint-plugin-import@^2.0.0 \
1719
@typescript-eslint/eslint-plugin@^5.0.0 \
1820
@typescript-eslint/parser@^5.0.0 \
1921
--save-dev

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
},
2828
"peerDependencies": {
2929
"@typescript-eslint/eslint-plugin": "^5.0.0",
30-
"@typescript-eslint/parser": "^5.0.0"
30+
"@typescript-eslint/parser": "^5.0.0",
31+
"eslint": "^8.0.0",
32+
"eslint-plugin-import": "^2.0.0"
3133
},
3234
"devDependencies": {
3335
"@typescript-eslint/eslint-plugin": "5.4.0",

0 commit comments

Comments
 (0)