最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - what causes *global module: false* in grunt.js - Stack Overflow

programmeradmin0浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 16

It'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 override jQuery.

发布评论

评论列表(0)

  1. 暂无评论