Configuration for line comments.
interface LineCommentConfig { comment: string; noIndent?: boolean;}
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.
Configuration for line comments.