使用未使用的变量时,在typescript / tslint中没有正确的错误/警告

时间:2018-03-29 12:40:22

标签: typescript tslint

如何使TS或TSlint指示我的项目中从未使用和读取变量B.我正在使用"tslint": "~5.9.1","typescript": "~2.5.3"

我的ts Angular文件:

export class SongsComponent implements OnInit {
   variableA: number; //used in html template, should get no error
   variableB: number; //not used at all - should get an error 


  ngOnInit() {
  const variableC = 5;    //not used at all - indeed getting TS error

  }

当我将变量A和变量B作为私有前缀时,两者都会产生错误。

我在tsconfig.json

中将以下设置设为true
  "noUnusedLocals": true,
  "noUnusedParameters": true,

0 个答案:

没有答案