我们使用gjslinter和 Grunt 来检查我们项目中的所有 js 文件。
Gruntfile.js 中的配置如下所示:
gjslint: {
options: {
flags: ['--disable 220,110,200'],
reporter: {
name: 'gjslint_xml',
dest: '<%= pkg.docs %>/gjslint/gjslint.xml'
}
},
all: {
src: ['<%= pkg.src %>/assets/js/modules/**', '<%= pkg.src %>/assets/js/lib/jquery/plugins/jquery-hse/**']
}
}
但是当我开始 linting 它失败了:
$ grunt gjslint Running "gjslint:all" (gjslint) task
Warning: Task "gjslint:all" failed. Use --force to continue.
Aborted due to warnings.
为什么?路径应该是正确的。不再有错误消息或报告。我该如何调试呢?