cspell-lib
Version:
A library of useful functions used across various cspell tools.
20 lines • 628 B
TypeScript
export interface ValidateTextOptions {
/**
* Generate suggestions where there are spelling issues.
*/
generateSuggestions?: boolean;
/**
* The number of suggestions to generate. The higher the number the longer it takes.
*/
numSuggestions?: number;
/**
* Verify that the in-document directives are correct.
*/
validateDirectives?: boolean;
/**
* Skips spell checking the document. Useful for testing and dry runs.
* It will read the configuration and parse the document.
*/
skipValidation?: boolean;
}
//# sourceMappingURL=ValidateTextOptions.d.ts.map