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
+16
Original file line number
Diff line number
Diff line change
@@ -144,6 +144,22 @@ rules:
144
144
# etc...
145
145
```
146
146
147
+
# Typescript
148
+
149
+
You may use the following shortcut or assemble your own config using the granular settings described below.
150
+
151
+
Make sure you have installed the [`@typescript-eslint/parser`] which is used in the following configuration. Unfortunately NPM does not allow to list optional peer dependencies.
152
+
153
+
```yaml
154
+
extends:
155
+
- eslint:recommended
156
+
- plugin:import/errors
157
+
- plugin:import/warnings
158
+
- plugin:import/typescript # this line does the trick
0 commit comments