Skip to content

Commit

Permalink
finally fixed indentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Peikert authored and Thomas Peikert committed Aug 29, 2014
1 parent bb10e77 commit 8babea7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/reporters/checkstyle.js
Expand Up @@ -40,7 +40,7 @@ module.exports =
if (opts.verbose) {
errorMessage += ' (' + result.error.code + ')';
}

var typeNo = result.error.code;
var severity = '';
switch(typeNo[0]) {
Expand All @@ -49,10 +49,10 @@ module.exports =
break;
case 'W':
severity = 'warning';
break;
case 'E':
severity = 'error';
break;
break;
case 'E':
severity = 'error';
break;
}

// Add the error
Expand Down Expand Up @@ -92,4 +92,4 @@ module.exports =

console.log(out.join("\n"));
}
};
};

0 comments on commit 8babea7

Please sign in to comment.