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

Commit 5b73f49

Browse files
committed
Allow parserOptions.project to be null
1 parent 8f1df2e commit 5b73f49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser-options.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ export interface ParserOptions extends Partial<Record<string, unknown>> {
262262
*
263263
* @see [project](https://typescript-eslint.io/architecture/parser/#project)
264264
*/
265-
project?: string | string[];
265+
project?: string | string[] | null;
266266

267267
/**
268268
* This option allows you to ignore folders from being included in your provided list of `project`s.

0 commit comments

Comments
 (0)