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

Commit b16c712

Browse files
holazzShinigami92
andauthored
fix: update excludedFiles type (#159)
Co-authored-by: Shinigami <[email protected]>
1 parent b58f401 commit b16c712

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/config/overrides.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ import type { Settings } from './settings';
1111
export interface Override {
1212
files: string[] | string;
1313

14-
excludedFiles?: string;
14+
/**
15+
* The glob patterns for excluded files.
16+
*/
17+
// https://github.com/eslint/eslint/blob/762a8727fb3b5619cff900826053b643ca5f1162/lib/shared/types.js#L59
18+
excludedFiles?: string | string[];
1519

1620
/**
1721
* An environment provides predefined global variables.

0 commit comments

Comments
 (0)