-
-
Notifications
You must be signed in to change notification settings - Fork 159
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
@inheritDoc broken with v23 release #520
Comments
Thank you for the report. I've fixed this case. In some cases internally (our internal |
…, require-param, require-returns): explicitly allow `inheritDoc` in all modes while only allowing `inheritdoc` in non-Closure mode; fixes gajus#520
I'm not sure what is wrong with the commit message such that semantic release has not put out a new release for this, but I have some other changes I hope to commit soon which should hopefully trigger a release (which includes this as well). |
🎉 This issue has been resolved in version 24.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
it looks like v23 started requiring
@inheritdoc
and ignoring@inheritDoc
(notice capitalization) when using closure mode. while the jsdoc spec uses lowercase, closure does not. trying to use@inheritdoc
with closure throws an error.example code snippet:
using v22 and older this works fine. starting with v23, it errors:
here's my
.eslintrc.js
settings:The text was updated successfully, but these errors were encountered: