Type Alias: InlineCommentMode
ts
type InlineCommentMode = "append" | "prepend" | "replace" | "ignore";Defined in: packages/core/src/configuration.ts:99
How a /* … */ comment on a member's rule combines with the member's authored tag prose: append (tag then comment, the default), prepend (comment then tag), replace (comment wins when present), or ignore (comments are never used as descriptions).