Configuration for line comments.

interface LineCommentConfig {
    comment: string;
    noIndent?: boolean;
}

Properties

Properties

comment: string

The line comment token, like //

noIndent?: boolean

Whether the comment token should not be indented and placed at the first column. Defaults to false.