We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6474ac4 commit 7193d4dCopy full SHA for 7193d4d
1 file changed
scripts/protocol-dts-generator.ts
@@ -110,6 +110,7 @@ const emitDomain = (domain: P.Domain) => {
110
const getCommentLines = (description: string) => {
111
const lines = description
112
.split(/\r?\n/g)
113
+ .filter(line => !line.startsWith('LINT.'))
114
.map(line => ` * ${line}`)
115
return [`/**`, ...lines, ` */`]
116
}
0 commit comments