Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
Description
Before You File a Bug Report Please Confirm You Have Done The Following...
- I have tried restarting my IDE and the issue persists.
- I have updated to the latest version of the packages.
- I havesearched for related issues and found none that matched my issue.
- I haveread the FAQ and my problem is not listed.
Playground Link
Repro Code
import{Something}from'somewhere';/** * Uses the {@link Something} */exportclassConsumer{}
ESLint Config
module.exports={parser:"@typescript-eslint/parser",rules:{"@typescript-eslint/no-unused-vars":"error"}};
tsconfig
No response
Expected Result
I expected the{@link Something}
to markSomething
as used and therefore not fail on line 1
Actual Result
An error on line 1:
'Something' is defined but never used. 1:10 - 1:19
Additional Info
When ICtrl + click in VSCode my editor jumps to the class definition as expected andTypeDoc will generate links when mentioning a class like this, but it must be imported.
This is a link for the{@link}
inline tag:https://tsdoc.org/pages/tags/link/