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:
Diffstat (limited to 'tasks')
-rw-r--r--tasks/bootlint.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/tasks/bootlint.js b/tasks/bootlint.js
index 5819c97..3bb6e5a 100644
--- a/tasks/bootlint.js
+++ b/tasks/bootlint.js
@@ -30,7 +30,7 @@ module.exports = function(grunt) {
grunt.registerMultiTask('bootlint', 'An HTML linter for Bootstrap projects', function() {
var options = this.options({
- stoponerror: false
+ stoponerror: true // not implemented yet...
});
// Iterate over all specified file groups.
@@ -53,7 +53,6 @@ module.exports = function(grunt) {
errs.forEach(function (msg) {
grunt.log.warn(filepath + ':', msg.error);
- if (options.stoponerror) return;
});
});