-
Notifications
You must be signed in to change notification settings - Fork 402
chore(repo): Remove unused Typedoc blockTags #5575
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(repo): Remove unused Typedoc blockTags #5575
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
🦋 Changeset detectedLatest commit: b466259 The changes in this PR will be included in the next version bump. This PR includes changesets to release 19 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
|
||
| To improve the in-editor experience when using Clerk's SDKs, we do our best to add [JSDoc comments](https://jsdoc.app/about-getting-started.html) to our package's public exports. The JSDoc comments should not attempt to duplicate any existing type information, but should provide meaningful additional context or references. If you are adding a new export, make sure it has a JSDoc comment. If you are updating an existing export, make sure any existing comments are updated appropriately. | ||
|
|
||
| There are some styleguide decisions you should follow when authoring JSDoc comments: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This list is non-exhaustive, I'm sure I'll add more over time. But that's a good start
Description
With Typedoc's
blockTagsoption you can define tags (like@important) that Typedoc should not complain about since you want to use them. I've added them in the beginning because at that time I wanted to use it for our callouts. Since then I switched over to using our markdown syntax (> [!IMPORTANT]) so it's time to remove them. And also remove their use from the source.I've also removed the
memberofbecause it won't do anything.Checklist
pnpm testruns as expected.pnpm buildruns as expected.Type of change