textlint
Version:
The pluggable linting tool for text and markdown.
32 lines • 746 B
TypeScript
export type CliOptions = {
rule?: string[];
preset?: string[];
plugin?: string[];
config?: string;
rulesdir?: string[];
format: string;
quiet: boolean;
color: boolean;
textlintrc: boolean;
cache: boolean;
cacheLocation: string;
rulesBaseDirectory?: string;
ignorePath: string;
help: boolean;
init: boolean;
fix: boolean;
dryRun: boolean;
debug: boolean;
printConfig: boolean;
stdin: boolean;
stdinFilename?: string;
version: boolean;
outputFile: string;
experimental: boolean;
_: string[];
};
export declare const options: {
generateHelp(): string;
parse(argv: string | Array<string>): CliOptions;
};
//# sourceMappingURL=options.d.ts.map