[Configuration] Ignore node modules in build

Ignore node modules and the top-level app.js when running
JSLint for a Maven build; scope of this testing is client
code. WTD-1199.
This commit is contained in:
Victor Woeltjen 2015-05-21 20:47:49 -07:00
parent 6ed14ed3a9
commit 11ab4df159

View File

@ -160,6 +160,8 @@
<sourceJsFolder>${basedir}</sourceJsFolder>
<excludes>
<exclude>**/lib/**</exclude>
<exclude>app.js</exclude>
<exclude>node_modules/**/*</exclude>
</excludes>
</configuration>
<executions>