import type { RuleConfig } from '../rule-config'; /** * Config. */ export interface HtmlIndentConfig { attribute?: number; baseIndent?: number; closeBracket?: | number | { startTag?: number; endTag?: number; selfClosingTag?: number; }; switchCase?: number; alignAttributesVertically?: boolean; ignores?: string[]; } /** * Option. */ export type HtmlIndentOption = number | 'tab'; /** * Options. */ export type HtmlIndentOptions = [HtmlIndentOption?, HtmlIndentConfig?]; /** * Enforce consistent indentation in `