根据Github上的bugfix release: r04和相对commit,防御分号的支持以前已添加到 JShint 。
/* jshint white: true */
;(function () {
"use strict";
})();
但我仍然收到这个错误:
期望'('缩进为1而不是2
我正在使用默认的JShint选项(ASI模式 false ),而我正在覆盖这些选项
"jshint_options": {
"browser": true,
"jquery": true,
"mootools": true,
"node": true,
"debug": true,
"devel": true,
"expr": true,
"white": true
}
我错过了什么吗?