Does anyone know how to configure jslint when using the
javascript-codehaus-mojo maven plugin?
I've tried adding the following to the pom.xml file, but jslint appears to
ignore the options I have set.
(in this case eqeq).
..
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jslint-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<goals>
<goal>jslint</goal>
<goal>test-jslint</goal>
</goals>
<configuration>
<options>
<eqeq>true</eqeq>
</options>
</configuration>
</execution>
</executions>
...
Mark