如何使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
"noUnusedLocals": true,
"noUnusedParameters": true,