We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A linter rule added in #388 erases valid Markdown.
This is an italicized word in valid Markdown in a JSDoc.
/** * *italic* **/
Linted:
/** * italic* **/
This is a bulleted list in valid Markdown in a JSDoc.
/** * * list item 1 * * list item 2 * * list item 3 **/
/** * list item 1 * list item 2 * list item 3 **/
"jsdoc/no-multi-asterisks": ["error"|"warn", {"allowWhitespace":true}]
no-multi-asterisks
/** * * list item 1 * * list item 2 * * list item 3 **/ interface List {}
pnpm run lint --fix
/** * list item 1 * list item 2 * list item 3 **/ interface List {}
The text was updated successfully, but these errors were encountered:
Hi @andretchen0 thanks for raising this, we could change this setting directly on https://github.com/Tresjs/eslint-config so the whole ecosystem is protected against the issue, wdyt?
Sorry, something went wrong.
Sounds good.
I'll close this one, feel free to re-open if the problem still persist
No branches or pull requests
Problem
A linter rule added in #388 erases valid Markdown.
Italics
This is an italicized word in valid Markdown in a JSDoc.
Linted:
Bulleted lists
This is a bulleted list in valid Markdown in a JSDoc.
Linted:
Solution
"jsdoc/no-multi-asterisks": ["error"|"warn", {"allowWhitespace":true}]
See also
no-multi-asterisks
gajus/eslint-plugin-jsdoc#773no-multi-asterisks
should not trigger when there's whitespace between asterisks gajus/eslint-plugin-jsdoc#803Steps to reproduce
pnpm run lint --fix
Code of Conduct
The text was updated successfully, but these errors were encountered: