vuoto
Version:
Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void
62 lines • 1.45 kB
TypeScript
/**
* Default ignore patterns for vuoto
* (these files/folders are skipped unless explicitly included).
*/
export declare const DEFAULT_IGNORES: string[];
/**
* Name of the vuoto ignore file.
*/
export declare const VUOTO_IGNORE_FILENAME = ".vuotoignore";
/**
* Byte order mark regex pattern.
*/
export declare const BYTE_ORDER_MARK: RegExp;
/**
* Em space regex pattern.
*/
export declare const EM_SPACE: RegExp;
/**
* En space regex pattern.
*/
export declare const EN_SPACE: RegExp;
/**
* Form feed regex pattern.
*/
export declare const FORM_FEED: RegExp;
/**
* Ideographic space regex pattern.
*/
export declare const IDEOGRAPHIC_SPACE: RegExp;
/**
* Invisible separators regex pattern.
*/
export declare const INVISIBLE_SEPARATORS: RegExp;
/**
* Line separator regex pattern.
*/
export declare const LINE_SEPARATOR: RegExp;
/**
* Narrow no-break space regex pattern.
*/
export declare const NARROW_NO_BREAK_SPACE: RegExp;
/**
* Non-breaking space regex pattern.
*/
export declare const NON_BREAKING_SPACE: RegExp;
/**
* Paragraph separator regex pattern.
*/
export declare const PARAGRAPH_SEPARATOR: RegExp;
/**
* Vertical tab regex pattern.
*/
export declare const VERTICAL_TAB: RegExp;
/**
* Visible miscellaneous spaces regex pattern.
*/
export declare const VISIBLE_MISC_SPACES: RegExp;
/**
* Zero-width characters regex pattern.
*/
export declare const ZERO_WIDTH: RegExp;
//# sourceMappingURL=consts.d.ts.map