jshint:时髦的代码与分号;如何在这里沉默jshint关于分号的所有抱怨?

时间:2012-05-10 12:28:08

标签: javascript jshint

我不是ASI的粉丝。但鉴于这是完全合法的JavaScript,这里jshint(反复地,8次重复)在哪里期待找到分号?

    script.addEventListener('load', function () {
        ++i !== requires.length ? loader(i) : (loadLocal(thirdParty), loadLocal(main))
    }, true);

1 个答案:

答案 0 :(得分:5)

在你的三元表达结束时。

(loadLocal(thirdParty), loadLocal(main));
                                        ^ here