Interface IndentationRules

interface IndentationRules {
    decreaseIndentPattern: string | RegExpOptions;
    increaseIndentPattern: string | RegExpOptions;
    indentNextLinePattern?: string | RegExpOptions;
    unIndentedLinePattern?: string | RegExpOptions;
}

Properties

decreaseIndentPattern: string | RegExpOptions
increaseIndentPattern: string | RegExpOptions
indentNextLinePattern?: string | RegExpOptions
unIndentedLinePattern?: string | RegExpOptions