Interface IEditorCommentsOptions

Configuration options for editor comments

interface IEditorCommentsOptions {
    ignoreEmptyLines?: boolean;
    insertSpace?: boolean;
}

Properties

ignoreEmptyLines?: boolean

Ignore empty lines when inserting line comments. Defaults to true.

insertSpace?: boolean

Insert a space after the line comment token and inside the block comments tokens. Defaults to true.