Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit e437253

Browse files
committed
Update typescript-eslint extends
1 parent 63db989 commit e437253

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/config/extends/typescript-eslint.d.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
* @see [Typescript eslint extends](https://typescript-eslint.io/linting/configs#recommended-configurations)
55
*/
66
export type TypescriptEslintExtends =
7+
| 'plugin:@typescript-eslint/all'
8+
| 'plugin:@typescript-eslint/base'
9+
| 'plugin:@typescript-eslint/disable-type-checked'
10+
| 'plugin:@typescript-eslint/eslint-recommended'
11+
| 'plugin:@typescript-eslint/recommended-requiring-type-checking' // this requiring-type-checking is deprecated and only for @typescript-eslint/eslint-plugin@v5
12+
| 'plugin:@typescript-eslint/recommended-type-checked'
713
| 'plugin:@typescript-eslint/recommended'
8-
| 'plugin:@typescript-eslint/recommended-requiring-type-checking'
9-
| 'plugin:@typescript-eslint/strict';
14+
| 'plugin:@typescript-eslint/strict-type-checked'
15+
| 'plugin:@typescript-eslint/strict'
16+
| 'plugin:@typescript-eslint/stylistic-type-checked'
17+
| 'plugin:@typescript-eslint/stylistic';

0 commit comments

Comments
 (0)