-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
Report errors (and quickfixes) for incorrect JSDoc #15852
Comments
well.. that means it is an error to have this JSDoc. if we report this, why not report other things in jsdoc as well.. like invalid tags |
I think this is subsumed by #13371 |
closing in favor of #13371 |
Let's use this issue to track semantic errors for jsdoc. #13371 tracks syntactic errors. There is still the open question of whether these errors (and associated quick fixes) should only be availble in js files with |
Might there be optional report of missing JSDoc And how about detection of a mismatch between actual |
@brettz9 Enable /** @return {number} */
function g() { return ""; } // Error Enable function f(x) {} // Error, 'x' is implicitly 'any' |
TypeScript Version: nightly (2.4.0-dev.20170515)
Code
Expected behavior:
Can fix spelling for either
abcdeg
.Actual behavior:
Does not work in jsdoc.
The text was updated successfully, but these errors were encountered: