Skip to content

Commit

Permalink
Allow parserOptions.project to be null
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Mar 18, 2023
1 parent 8f1df2e commit 5b73f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser-options.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export interface ParserOptions extends Partial<Record<string, unknown>> {
*
* @see [project](https://typescript-eslint.io/architecture/parser/#project)
*/
project?: string | string[];
project?: string | string[] | null;

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

0 comments on commit 5b73f49

Please sign in to comment.