Interface FormattingOptions

Value-object describing what options formatting should use.

interface FormattingOptions {
    insertSpaces: boolean;
    tabSize: number;
    [key: string]: boolean | number | string;
}

Indexable

[key: string]: boolean | number | string

Signature for further properties.

Properties

insertSpaces: boolean

Prefer spaces over tabs.

tabSize: number

Size of a tab in spaces.