This question already has answers here:
jshint expects the new 'prefix' for functions

(2个答案)


4年前关闭。




我在调用ReturnData()时遇到问题; CreateOutput()中的方法。

这是代码。
function ReturnData() {
    "use strict";
    return "The data";
}


function CreateOutput() {
    "use strict";
    var takeValue = ReturnData();
    bind(takeValue);
}

错误

最佳答案

JSLint假设ReturnData是构造函数。您可以将其重命名为returnData或关闭规则。您可以在命令行上使用--newcap将其关闭。

10-05 23:13