admin管理员组文章数量:1344170
Many grunt.js-script starts with:
/*global module:false*/
module.exports = function(grunt) {
But what the cause of the ment in the first line?
Many grunt.js-script starts with:
/*global module:false*/
module.exports = function(grunt) {
But what the cause of the ment in the first line?
Share Improve this question asked Dec 20, 2012 at 13:24 TLindigTLindig 50.2k3 gold badges30 silver badges32 bronze badges1 Answer
Reset to default 16It's a directive for JSLint or JSHint. It tells the JSLint/JSHint parser that the identifier module
is defined elsewhere, so it doesn't throw an error telling you that module
is undefined. Without it, the parser will encounter the reference to module
and think that you're trying to refer to an undefined variable.
From the JSLint docs:
JSLint also recognizes a
/*global*/
directive that can indicate to JSLint that variables used in this file were defined in other files. The directive can contain a ma separated list of names.
And the JSHint docs:
In addition to options, you can let JSHint know what global variables it should expect:
/*global DISQUS:true, jQuery:false */
In the example above, JSHint will allow you to override
DISQUS
, but plain if you try to overridejQuery
.
本文标签: javascriptwhat causes *global module false* in gruntjsStack Overflow
版权声明:本文标题:javascript - what causes *global module: false* in grunt.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743728934a2528849.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论