如何使用jshint警告定义角度自定义包?

时间:2014-08-10 09:53:11

标签: angularjs jshint

我刚刚将moment.js安装到我的angularjs应用程序中。

但是jshint一直警告说没有定义时刻。

  public/js/services/notifications.js
 16 |        console.log(moment.locale('fr'));
                         ^ 'moment' is not defined.

1 个答案:

答案 0 :(得分:16)

为.jshint文件的全局配置添加时刻

    {
      ..,
      "globals": {
         ..,
         "moment" : false
      }
    }