Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/grunt-bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorZac Echola <zac.echola@so.mnscu.edu>2014-11-10 20:38:10 +0300
committerZac Echola <zac.echola@so.mnscu.edu>2014-11-10 20:38:10 +0300
commitc857146f19298a9bca2b702661fbd1269178583e (patch)
treecb6863e3748632f30a6e17da676e451cfd93e5fb /tasks
parentf0345e155b8d06bf34199d2370746e9289ebed9b (diff)
displays message when files pass
Diffstat (limited to 'tasks')
-rw-r--r--tasks/bootlint.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/tasks/bootlint.js b/tasks/bootlint.js
index 1f2d813..8338f79 100644
--- a/tasks/bootlint.js
+++ b/tasks/bootlint.js
@@ -68,6 +68,8 @@ module.exports = function(grunt) {
if (hardfail) {
grunt.fail.warn('Too many bootlint errors.');
}
+ } else {
+ grunt.log.ok(totalFileCount + ' file(s) lint free.');
}
});
});