我在设置JSHint以运行多个任务时遇到问题。这就是我所拥有的:
jshint: {
app: {
files: [
'web/**/*.js',
'!web/app.js',
'!web/lib/**',
'!web/build/**'
],
options: {
// Just let the templates do whatever they want when compiled
ignores: ['web/templates/*.js'],
// options here to override JSHint defaults
loopfunc: true,
newcap: false,
reporter: require('jshint-stylish'),
globals: {
jQuery: true,
gadget: true
}
}
},
test: {
files: [
'web/**/*.js',
'!web/app.js',
'!web/lib/**',
'!web/build/**'
],
options: {
// just let the templates do whatever they want when compiled
ignores: ['web/templates/*.js'],
reporter: require('jshint-stylish'),
jshintrc: '.jshintrc'
}
}
}当我尝试运行grunt jshint:app或grunt jshint:test时,我得到的错误是它们都没有任务。
如果你发现我遗漏了什么,谢谢你的帮助。
发布于 2015-05-04 21:35:27
我觉得你需要加上
grunt.loadNpmTasks('grunt-contrib-jshint');到你的呼叫声文件
https://stackoverflow.com/questions/30031284
复制相似问题