-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Hi, have a very weird issue. If there is jsdoc error, it's not shown in VS error/warn log and any following error neighed.
e.g.
`;
/**
*@note test
*/
class test
{
a = 1;
};`
This must display (got it from command line eslint execution):
1:1 error Unnecessary semicolon no-extra-semi
4:0 warning Invalid JSDoc tag name "note" jsdoc/check-tag-names
6:7 warning 'test' is defined but never used no-unused-vars
9:2 error Unnecessary semicolon no-extra-semi
9:3 error Newline required at end of file but not found eol-last
Howerver in VS I have a single
(no-extra-semi) Unnecessary semicolon. Miscellaneous Files test.js1
If I remove the error from the JS doc or remove the doc, will get all the following errors.
I suspect some kind of parsing error in your plugin related to jsdoc output (double quote?)
Thanks for fixing it