我刚刚将moment.js安装到我的angularjs应用程序中。
但是jshint一直警告说没有定义时刻。
public/js/services/notifications.js
16 | console.log(moment.locale('fr'));
^ 'moment' is not defined.
答案 0 :(得分:16)
为.jshint文件的全局配置添加时刻
{
..,
"globals": {
..,
"moment" : false
}
}