如上所述,我正在使用grunt并尝试使用jshint插件。我希望有人可以直接指出我,或者给我一个正确使用reporterOutput的例子。 以下是代码不能正常工作的代码部分:
jshint: {
options: {
reporter: 'checkstyle',
reporterOutput: 'dist/result.xml',
jshintrc: '../.jshintrc',
force: true
},
build: {
src: 'public/javascripts/*.js',
}
}