10000
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
https://typescript-eslint.io/play/#ts=5.3.3&fileType=.ts&code=JYWwDg9gTgLgBAbzgeQHYBECmBnGUICecAvnAGb4hwDkAAgIaoDmArgDb1QD0AxtJtQDcAWABQY4KhiYoZej0xwAkkqkzEYscU2iuAKj1i4exLTaSA1igw48hEqfOorKtVG2jjXMZgAekWHIWVB4YYAhUOAAxYIAKAEoNTzgoTBgWKEiABhFRDyA&eslintrc=N4KABGBEBOCuA2BTAzpAXGUEKQHYHsBaWXWZRAE0IDcBDaVDSfAMxcgBpxtIABAFwCeABxQBjaAEth-QiniTc-APQFipclToN0URNGj5okbgF8QpoA&tsconfig=&tokens=false
import { OnDestroy } from '@angular/core'; interface IInter { } /** * {@link OnDestroy } {@link IInter} */ export function Fun() { return 0; }
module.exports = { parser: "@typescript-eslint/parser", rules: { "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": "error" }, };
{ "compilerOptions": { // ... } }
I expected none of these errors to occur:
'OnDestroy' is defined but never used. 1:10 - 1:19 'IInter' is defined but never used. 3:11 - 3:17
The linter throws the following errors:
No response
The text was updated successfully, but these errors were encountered:
typescript-eslint doesn't handle JSDoc. See gajus/eslint-plugin-jsdoc#858 and try jsdoc/no-undefined-types instead.
jsdoc/no-undefined-types
Sorry, something went wrong.
No branches or pull requests
Before You File a Bug Report Please Confirm You Have Done The Following...
Playground Link
https://typescript-eslint.io/play/#ts=5.3.3&fileType=.ts&code=JYWwDg9gTgLgBAbzgeQHYBECmBnGUICecAvnAGb4hwDkAAgIaoDmArgDb1QD0AxtJtQDcAWABQY4KhiYoZej0xwAkkqkzEYscU2iuAKj1i4exLTaSA1igw48hEqfOorKtVG2jjXMZgAekWHIWVB4YYAhUOAAxYIAKAEoNTzgoTBgWKEiABhFRDyA&eslintrc=N4KABGBEBOCuA2BTAzpAXGUEKQHYHsBaWXWZRAE0IDcBDaVDSfAMxcgBpxtIABAFwCeABxQBjaAEth-QiniTc-APQFipclToN0URNGj5okbgF8QpoA&tsconfig=&tokens=false
Repro Code
ESLint Config
tsconfig
Expected Result
I expected none of these errors to occur:
Actual Result
The linter throws the following errors:
Additional Info
No response
The text was updated successfully, but these errors were encountered: