You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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?)
ESLint uses Doctrine to parse JSDoc comments. In case parsing fails, ESLint outputs whatever parser returned. You can try to use Doctrine directly on your JSDoc code, and see if it will be able to provide more meaningful error.
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
The text was updated successfully, but these errors were encountered: