Skip to content

Commit

Permalink
turns out every xml element must be error, but severity has to vary f…
Browse files Browse the repository at this point in the history
…or jenkins to understand levels
  • Loading branch information
Thomas Peikert authored and Thomas Peikert committed Aug 21, 2014
1 parent 9757343 commit 8652fdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reporters/checkstyle.js
Expand Up @@ -80,8 +80,8 @@ module.exports =
for (i = 0; i < files[fileName].length; i++) {
issue = files[fileName][i];
out.push(
"\t\t<" + issue.severity +
" line=\"" + issue.line + "\" " +
"\t\t<error "+
"line=\"" + issue.line + "\" " +
"column=\"" + issue.column + "\" " +
"severity=\"" + issue.severity + "\" " +
"message=\"" + encode(issue.message) + "\" " +
Expand Down

0 comments on commit 8652fdb

Please sign in to comment.