Skip to content

Commit

Permalink
Update typescript-eslint extends
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Oct 8, 2023
1 parent 63db989 commit e437253
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/config/extends/typescript-eslint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
* @see [Typescript eslint extends](https://typescript-eslint.io/linting/configs#recommended-configurations)
*/
export type TypescriptEslintExtends =
| 'plugin:@typescript-eslint/all'
| 'plugin:@typescript-eslint/base'
| 'plugin:@typescript-eslint/disable-type-checked'
| 'plugin:@typescript-eslint/eslint-recommended'
| 'plugin:@typescript-eslint/recommended-requiring-type-checking' // this requiring-type-checking is deprecated and only for @typescript-eslint/eslint-plugin@v5
| 'plugin:@typescript-eslint/recommended-type-checked'
| 'plugin:@typescript-eslint/recommended'
| 'plugin:@typescript-eslint/recommended-requiring-type-checking'
| 'plugin:@typescript-eslint/strict';
| 'plugin:@typescript-eslint/strict-type-checked'
| 'plugin:@typescript-eslint/strict'
| 'plugin:@typescript-eslint/stylistic-type-checked'
| 'plugin:@typescript-eslint/stylistic';

0 comments on commit e437253

Please sign in to comment.