Description
What version of Oxlint are you using?
0.16.9
What command did you run?
pnpm oxlint
What does your .oxlintrc.json
config file look like?
Or any content in definedTags
What happened?
Using definedTags
should be a list in addition to the existing tags that are valid. When now using an @, e.g. in the description of @see
, it will throw. This does not happen when not using definedTags
oxlint is parsing @parcel/watcher](https://github.com/parcel-bundler/watcher)
as a jsdoc tag, when it is not one, as @parcel/watcher](https://github.com/parcel-bundler/watcher)
is not in the allowed list of tag names, jsdoc/check-tag-names
reports a diagnostic.
Example:
export interface ConfigSchema {
/**
* @see [@parcel/watcher](https://github.com/parcel-bundler/watcher)
*/
watcher: 'chokidar' | 'parcel' | 'chokidar-granular'
}
