Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

typescript - Eslint returns with no-unused-vars

I have setup eslint to warn me on unsed vars

rules: {
  '@typescript-eslint/no-unused-vars': ['error', { args: 'none' }],
}

Now I have a typescript class which look like this:

import { User } from './user';

export class MyClass {
  async myMethod(): Promise<User> {
    // Some code
  }
}

When I run eslint I get this error

error  'User' is defined but never used  @typescript-eslint/no-unused-vars

Why is eslint warning me? In my eyes the variable is used.

question from:https://stackoverflow.com/questions/65938767/eslint-returns-with-no-unused-vars

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In your example, we see only the type Promise, which doesn't mean that you are using User in your Method, but only to define a type. Eslint is expected :

import { IUser} from './user'; // interface for User object
import { User } from './user'; // User object

export class MyClass {
  async myMethod(User: string): Promise<IUser> {
    // Some code with User parameter
  }
}

Your Eslint rule will apply only on User object, and not on the interface.

some readings: https://basarat.gitbook.io/typescript/future-javascript/promise


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...