| 369 | |
| 370 | // deno-lint-ignore no-unused-vars |
| 371 | function assertInterfaceDocs(document: DocNodeWithJsDoc<DocNodeInterface>) { |
| 372 | // TODO(iuioiua): This is currently disabled deliberately, as it throws errors |
| 373 | // for interface properties that don't have a `@default` tag. Re-enable this |
| 374 | // when checking for `@default` tags again, or when a solution is found for |
| 375 | // ignoring some properties (those that don't require a `@default` tag). |
| 376 | // assertHasDefaultTags(document); |
| 377 | } |
| 378 | |
| 379 | function assertHasDeprecationDesc(document: DocNodeWithJsDoc<DocNode>) { |
| 380 | const tags = document.jsDoc?.tags; |