Skip to content

jsdoc eslint errors halt not shown in VS #13

@nminkov

Description

@nminkov

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions