我用Grunt为jshint编写了一个演示程序,代码如下:
<bean id="helloWorld2" class="y.HelloWorld"
init-method="init" destroy-method="destroy" lazy-init="true">
并得到例外:
以下是jshint-junit-reporter安装的结果:
及相关软件版本: npm:3.10.8 grunt-cli v1.2.0 咕噜v1.0.1 nodeJS:v0.12.7 我真的很感激任何建议
答案 0 :(得分:1)
记者:和 reporterOutput :都是选项,应在选项块中指定。尝试将您的任务更新为:
jshint: {
all: ['Gruntfile.js'],
options: {
reporter: require("jshint-junit-reporter"),
reporterOutput: "junit-output.xml"
}
}