diff --git a/README.md b/README.md index 725e54dea..ced6fa503 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Thanks * mocha: [https://github.com/visionmedia/mocha](https://github.com/visionmedia/mocha) * expect.js: [https://github.com/LearnBoost/expect.js](https://github.com/LearnBoost/expect.js) -* jscover: [https://github.com/fengmk2/jscover](https://github.com/fengmk2/jscover) +* istanbul: [https://github.com/gotwarlost/istanbul](https://github.com/gotwarlost/istanbul) * Grunt: [http://gruntjs.com/](http://gruntjs.com/) * commander.js: [https://github.com/visionmedia/commander.js](https://github.com/visionmedia/commander.js) * colors.js: [https://github.com/Marak/colors.js](https://github.com/Marak/colors.js) diff --git a/bin/htmlhint b/bin/htmlhint index c40bd19c1..9b99a17ad 100755 --- a/bin/htmlhint +++ b/bin/htmlhint @@ -168,7 +168,7 @@ function hintFile(filepath, ruleset, jsonOutput){ function logPretty(filepath, messages){ console.log(filepath+':'); messages.forEach(function(hint){ - console.log('\t[%s] line %d, col %d: %s', hint.rule.id.green, hint.line, hint.col, hint.message[hint.type === 'error'?'red':'yellow']); + console.log('[ %s ] line %d, col %d: %s', hint.rule.id.green, hint.line, hint.col, hint.message[hint.type === 'error'?'red':'yellow']); }); console.log(''); }