UNPKG

@eslint/config-array

Version:

General purpose glob-based configuration matching.

24 lines (23 loc) 444 B
/** * @fileoverview Types for the config-array package. * @author Nicholas C. Zakas */ export interface ConfigObject { /** * The base path for files and ignores. */ basePath?: string; /** * The files to include. */ files?: string[]; /** * The files to exclude. */ ignores?: string[]; /** * The name of the config object. */ name?: string; [key: string]: unknown; }