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
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6623958..585597f 100644
--- a/README.md
+++ b/README.md
@@ -104,6 +104,27 @@ grunt.initConfig({
```
+#### options.showallerrors (Coming in v0.7.0)
+
+* Type: `Boolean`
+* Default: `false`
+
+Shows all errors and warnings before stopping the task. (Overrides `stoponerror` and `stoponwarning`, above.)
+
+Example:
+
+```javascript
+grunt.initConfig({
+ bootlint: {
+ options: {
+ showallerrors: true
+ },
+ files: ['test/fixtures/**.html'],
+ },
+});
+```
+
+
#### options.relaxerror
* Type: `Array`