Skip to content

Commit

Permalink
fix: update excludedFiles type (#159)
Browse files Browse the repository at this point in the history
Co-authored-by: Shinigami <chrissi92@hotmail.de>
  • Loading branch information
holazz and Shinigami92 committed Jan 2, 2023
1 parent b58f401 commit b16c712
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/config/overrides.d.ts
Expand Up @@ -11,7 +11,11 @@ import type { Settings } from './settings';
export interface Override {
files: string[] | string;

excludedFiles?: string;
/**
* The glob patterns for excluded files.
*/
// https://github.com/eslint/eslint/blob/762a8727fb3b5619cff900826053b643ca5f1162/lib/shared/types.js#L59
excludedFiles?: string | string[];

/**
* An environment provides predefined global variables.
Expand Down

0 comments on commit b16c712

Please sign in to comment.