gulp-jshint-xml-file-reporter
Version:
A JSHint reporter to be used with gulp-jshint that will provide XML (i.e. checkstyle and junit), that can be used by CI tools such as jenkins
14 lines (13 loc) • 999 B
text/xml
<jslint>
<file name="dummy.js">
<issue line="1" char="13" reason="Strings must use singlequote." evidence=""use strict"" severity="W" />
<issue line="1" char="1" reason="Missing semicolon." evidence=""use strict"" severity="W" />
<issue line="3" char="9" reason="Missing name in function declaration." evidence="function(a) {" severity="W" />
<issue line="9" char="1" reason="'c' is not defined." evidence="c=1;" severity="W" />
<issue line="3" char="1" reason="'undefined' is defined but never used." evidence="function(a) {" severity="W" />
<issue line="7" char="5" reason="'a' is defined but never used." evidence="var a, b;" severity="W" />
<issue line="7" char="8" reason="'b' is defined but never used." evidence="var a, b;" severity="W" />
<issue line="3" char="10" reason="'a' is defined but never used." evidence="function(a) {" severity="W" />
</file>
</jslint>