在我的 react/typescript 项目中,我对 tslint 使用了 no-unused-variable规则。因此,如果没有未使用的变量或导入,它将阻止提交。现在它说,它已被弃用并在 tsconfig 文件中使用noUnusedLocals和 **noUnusedParameters* 。
我是这样用的。
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"noUnusedLocals": true,
"noUnusedParameters": true,
// other rules
}
现在未使用的变量被突出显示为警告,但预提交无法捕获它们。
我怎样才能解决这个问题?