/** An array of characters recognized as bullet-like symbols indicating list items. */ type Bullets = readonly string[]; /** * Configuration options for the use-list rule. */ type Options = { /** Bullet characters that require a space after them to be considered list items. */ spaceNeededBullets?: string[]; /** Whether to report text nodes with no preceding sibling. */ noPrev?: boolean; /** Whether to report text nodes preceded by an element node. */ prevElement?: boolean; /** Whether to report text nodes preceded by a comment node. */ prevComment?: boolean; /** Whether to report text nodes preceded by a preprocessor block. */ prevCodeBlock?: boolean; }; /** * Rule that suggests using `