tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
10 lines (9 loc) • 417 B
TypeScript
import { CommentFileNames } from "../../comments/collectCommentFileNames";
import { ResultWithDataStatus } from "../../types";
export type ExtractGlobPathsDependencies = {
globAsync: (pattern: string) => Promise<Error | string[]>;
};
export declare const extractGlobPaths: (
dependencies: ExtractGlobPathsDependencies,
{ exclude, include }: CommentFileNames,
) => Promise<ResultWithDataStatus<string[]>>;