vuoto
Version:
Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void
14 lines • 394 B
TypeScript
/**
* Read .gitignore file in a directory, if present.
* @param dir The directory to read the .gitignore file from.
*
* @returns The patterns from the .gitignore file.
*
* @example
*
* ```ts
* const patterns = await readGitignoreFile(process.cwd());
* ```
*/
export declare function readGitignoreFile(dir: string): Promise<string[]>;
//# sourceMappingURL=read-gitignore-file.d.ts.map