我想为jshint错误创建一个万无一失的报告。我需要在配置中使用标签吗?
我尝试了以下但是没有用
<plugin>
<groupId>com.cj.jshintmojo</groupId>
<artifactId>jshint-maven-plugin</artifactId>
<version>2.4.1</version>
<options>maxparams:3,indent,camelcase,eqeqeq,forin,immed,latedef,noarg,noempty,nonew</options>
<executions>
<execution>
<goals>
<goal>lint</goal>
</goals>
</execution>
</executions>
<configuration>
<globals>require,$,yourFunkyJavascriptModule</globals>
<reporter>jslint</reporter>
<reportFile>${basedir}/target/jshint.xml</reportFile>
<failOnError>false</failOnError>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.6</version>
<configuration>
<reportsDirectories>
<reportsDirectory>${basedir}/target/</reportsDirectory>
</reportsDirectories>
</configuration>
</plugin>
我还尝试将jslint更改为jshintmojo插件标记中的checkstyle。
我可以使用其他任何插件来生成jshint报告吗?