After setting up and configuring the plugin, I can't build my project. The build project progress bar sits at 50% and is stuck at "Building project...: Invoking External Problem Marker Builder' on '/trunk'".
Eclipse 4.2.0
Here's my config:
<buildCommand>
<!-- About this plugin: https://github.com/wrygiel/eclipse-external-problem-marker -->
<name>net.rygielski.eclipse.problemmarker.builder</name>
<arguments>
<dictionary>
<key>filter</key>
<value>^.*\.(js|php|snip|json)$</value>
</dictionary>
<dictionary>
<key>command</key>
<value>cmd /c node C:\\Users\\sorenses.CHS\\workspace\\trunk\\_svn_hooks\\js\\validator.js "$1"</value>
</dictionary>
<dictionary>
<key>output-match</key>
<value>^(.*)$</value>
</dictionary>
<dictionary>
<key>line-number</key>
<value>1</value>
</dictionary>
<dictionary>
<key>severity</key>
<value>W</value>
</dictionary>
<dictionary>
<key>message</key>
<value>line: $1</value>
</dictionary>
</arguments>
</buildCommand>
and here's some sample output from my script:
JSHint Error: ./nw-report-actions.js:1974:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2268:32 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2269:32 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2274:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2274:77 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2276:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2277:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2332:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2333:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2333:62 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2334:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2334:59 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2335:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2337:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:2338:21 Strings must use singlequote.
JSHint Error: ./nw-report-actions.js:482:71 'e' is defined but never used.
JSHint Error: ./nw-report-actions.js:609:58 'event' is defined but never used.
JSHint Error: ./nw-report-actions.js:616:59 'response' is defined but never used.
JSHint Error: ./nw-report-actions.js:616:49 '$dialog' is defined but never used.
JSHint Error: ./nw-report-actions.js:780:24 'fields' is defined but never used.
JSHint Error: ./nw-report-actions.js:1068:56 'response' is defined but never used.
JSHint Error: ./nw-report-actions.js:1068:46 '$dialog' is defined but never used.
JSHint Error: ./nw-report-actions.js:1440:27 'r' is defined but never used.
JSHint Error: ./nw-report-actions.js:1833:55 'response' is defined but never used.
JSHint Error: ./nw-report-actions.js:1833:45 '$dialog' is defined but never used.
JSHint Error: ./nw-report-actions.js:2234:34 'data' is defined but never used.
JSHint Error: ./nw-report-actions.js:2234:34 Too many errors. (67% scanned).
After setting up and configuring the plugin, I can't build my project. The build project progress bar sits at 50% and is stuck at "Building project...: Invoking External Problem Marker Builder' on '/trunk'".
Eclipse 4.2.0
Here's my config:
and here's some sample output from my script: