-
Notifications
You must be signed in to change notification settings - Fork 134
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
ESlint plugin: The TSDoc tag "@notExported" is not recognized #298
Comments
You should add tsdoc.json file to the directory that contains tsconfig.json file. {
"$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
"tagDefinitions": [
{
"tagName": "@author",
"syntaxKind": "block"
},
{
"tagName": "@description",
"syntaxKind": "block"
},
{
"tagName": "@implements",
"syntaxKind": "modifier"
}
],
"supportForTags": {
"@author": true,
"@description": true,
"@implements": true
}
} more information can be found at |
Yes, this solved the problem of not recognized tags, but now |
Solved. You need to add Anyway, this sounds like a bug to me. The tsdoc file should supplement the standard behavior, not interfere. Thanks! |
I have installed TypeDoc and its plugin
typedoc-plugin-not-exported
that adds a new tag@notExported
.Running ESlint with
eslint-plugin-tsdoc
rightly complains that@notExported
tag is not defined:tsdoc-undefined-tag: The TSDoc tag "@notExported" is not defined in this configuration (tsdoc/syntax)
Is there any mechanism to make the
eslint-plugin-tsdoc
ignore this or generally a set of tags?Thanks!
mario
The text was updated successfully, but these errors were encountered: