3 回答
TA贡献1783条经验 获得超4个赞
'use strict';作为包装函数的第一条语句包括在内,因此它仅影响该函数。这样可以防止在连接不严格的脚本时出现问题。
请参阅道格拉斯·克罗克福德(Douglas Crockford)最新的博客文章“ 严格模式即将来临”。
该帖子中的示例:
(function () {
'use strict';
// this function is strict...
}());
(function () {
// but this function is sloppy...
}());
更新: 如果您不想包装立即函数(例如,它是一个节点模块),则可以禁用警告。
对于JSLint(每个Zhami):
/*jslint node: true */
对于JSHint:
/*jshint strict:false */
或(根据Laith Shadeed的说法)
/* jshint -W097 */
要禁用来自JSHint的任何警告,请检查JSHint源代码中的映射(在docs中有详细信息)。
更新2: JSHint支持node:boolean选项。见.jshintrcgithub。
/* jshint node: true */
TA贡献1804条经验 获得超2个赞
在Cross Platform JavaScript博客文章之后,我开始创建Node.js / browserify应用程序。我遇到了这个问题,因为我的全新Gruntfile没有通过jshint。
幸运的是,我在Leanpub上有关Grunt的书中找到了答案:
如果现在尝试,我们将扫描我们的Gruntfile…并得到一些错误:
$ grunt jshint
Running "jshint:all" (jshint) task
Linting Gruntfile.js...ERROR
[L1:C1] W097: Use the function form of "use strict".
'use strict';
Linting Gruntfile.js...ERROR
[L3:C1] W117: 'module' is not defined.
module.exports = function (grunt) {
Warning: Task "jshint:all" failed. Use --force to continue.
这两个错误都是因为Gruntfile是Node程序,并且默认情况下JSHint无法识别或允许使用module和的字符串版本use strict。我们可以设置一个JSHint规则来接受我们的Node程序。让我们编辑jshint任务配置并添加一个选项键:
jshint: {
options: {
node: true
},
}
添加node: true到jshint options,使jshint进入“节点模式”,为我消除了这两个错误。
添加回答
举报