textlint
Version:
The pluggable linting tool for text and markdown.
12 lines • 409 B
TypeScript
export interface RuleOf {
presetNames: string[];
enabledRuleNames: string[];
disabledRuleNames: string[];
}
/**
* Get rule keys from `.textlintrc` config object.
* @param {Object} [rulesConfig]
* @returns {{available: string[], disabledRuleNames: string[]}}
*/
export declare function separateEnabledOrDisabled(rulesConfig: any): RuleOf;
//# sourceMappingURL=separate-by-config-option.d.ts.map