JSLint 站点已更新,我无法再检查 JS 脚本了。对我来说,这个警告并不重要,我不想通过数千行来解决这个问题,我想找到更严重的问题。
有人知道如何关闭此错误,或使用旧版 JSLint 吗?
更新
例子:
function doSomethingWithNodes(nodes){
this.doSomething();
for (var i = 0; i < nodes.length; ++i){
this.doSomethingElse(nodes[i]);
}
doSomething(); // want to find this problem
}
jslint.com 输出:
Error:
Problem at line 4 character 8: Move all 'var' declarations to the top of the function.
for (var i = 0; i < nodes.length; ++i){
Problem at line 4 character 8: Stopping, unable to continue. (44% scanned).
问题:
在函数之上有变量是新的要求。我不能使用 JSLINT 来测试代码,因为它停止扫描这个错误的脚本。
我有很多代码,不想将此警告威胁为严重错误。
2011 年 8 月 22日更新:找到了http://jshint.com,它看起来比http://jslint.com/好多了