/** * CSpell-json-reporter settings type definition */ export type CSpellJSONReporterSettings = { /** * Path to the output file. * * Relative paths are relative to the current working directory. * * Special values: * - `stdout` - write the JSON to `stdout`. * - `stderr` - write the JSON to `stderr`. * * @default stdout */ outFile?: string; /** * Add more information about the files being checked and the configuration */ verbose?: boolean; /** * Level of verbosity (higher number = more verbose). */ verboseLevel?: number; /** * Add information useful for debugging cspell.json files * @default false */ debug?: boolean; /** * Add progress messages * @default false */ progress?: boolean; };