Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion compiler/src/model/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,9 @@ export function parseJsDocTags (jsDoc: JSDoc[]): Record<string, string> {
value: tag.getComment() ?? ''
}
})
const mapped = tags.reduce((acc, curr) => ({ ...acc, [curr.name]: curr.value }), {})
// Ignore UpdateForV10 which is only useful at the eslint level
const filteredTags = tags.filter(tag => tag.name != 'UpdateForV10')
const mapped = filteredTags.reduce((acc, curr) => ({ ...acc, [curr.name]: curr.value }), {})
return mapped
}

Expand Down
342 changes: 337 additions & 5 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading