You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32-2Lines changed: 32 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,12 @@ npm i -D @terrestris/eslint-config-typescript
10
10
11
11
2. Install peerDependencies
12
12
13
-
Can be omitted for already existing dependencies.
13
+
Can be omitted for already existing dependencies, also usually the latest version will be installed when omitting the version when running `bun/npm i -D <package>`.
14
+
14
15
```bash
15
16
npm i -D eslint@^9
16
17
npm i -D @typescript-eslint/eslint-plugin@^8
17
-
npm i -D @stylistic/eslint-plugin@^2
18
+
npm i -D @stylistic/eslint-plugin@^4
18
19
npm i -D typescript@^5
19
20
```
20
21
@@ -26,6 +27,35 @@ module.exports = {
26
27
};
27
28
```
28
29
30
+
4. Using eslint v9
31
+
32
+
First of all, make sure you use a recent node version!
33
+
34
+
After that, you can use a simple config like this to use this with eslint v9:
0 commit comments