例外:jshint-junit-reporter

时间:2016-10-21 09:45:41

标签: npm gruntjs jshint

我用Grunt为jshint编写了一个演示程序,代码如下:

<bean id="helloWorld2" class="y.HelloWorld"
      init-method="init" destroy-method="destroy" lazy-init="true"> 

并得到例外:

enter image description here

以下是jshint-junit-reporter安装的结果: enter image description here

及相关软件版本: npm:3.10.8 grunt-cli v1.2.0 咕噜v1.0.1 nodeJS:v0.12.7 我真的很感激任何建议

1 个答案:

答案 0 :(得分:1)

记者:和 reporterOutput :都是选项,应在选项块中指定。尝试将您的任务更新为:

jshint: {
    all: ['Gruntfile.js'],
    options: {
        reporter: require("jshint-junit-reporter"),
        reporterOutput: "junit-output.xml"
    }
}

https://github.com/gruntjs/grunt-contrib-jshint