提问人:dnsh 提问时间:5/24/2022 更新时间:5/24/2022 访问量:194
JavaScript 代码 Linting 工具,用于查找已初始化但可能由于条件而未使用的变量
JavaScript Code Linting tool to find Variables which are initialised but might not be used due to condition
问:
我有以下 JavaScript 代码,
var foo = {
company: "ABC",
name: "John"
};
var att = "";
function test(ob, i) {
var m = JSON.stringify(ob);
if (i < 10) {
att = att + m;
}
}
test(foo, 20);
在上面的代码中,当不为 true 时,line 是变量的不必要初始化。更好的代码是将初始化移动到条件中。var m = JSON.stringify(ob);
i < 10
if
我找不到可以检测此类情况的代码 linter。在这种情况下,我想要一个警告。有谁知道任何可以做到这一点的 linting 工具?variable might not be used
我试过了
答: 暂无答案
评论