Interface CommentRule
Expand description
interface CommentRule {
blockComment?: CharacterPair;
lineComment?: string | LineCommentConfig;
}Properties§
§§
block Comment?: CharacterPairThe block comment character pair, like /* block comment */
line Comment?: string | LineCommentConfigThe line comment token, like // this is a comment.
Can be a string or an object with comment and optional noIndent properties.
Describes how comments for a language work.