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:
authorZac Echola <zac.echola@gmail.com>2014-09-26 06:21:24 +0400
committerZac Echola <zac.echola@gmail.com>2014-09-26 06:21:24 +0400
commit8de960b3e54703db9748b20c796c3549fdd86d42 (patch)
tree5c44f26d1f390b243a69665c9b959f39be809794 /README.md
parent4d4c31c16e0ca3384654edab84e2eb68faf54e07 (diff)
fix #15
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 3 insertions, 9 deletions
diff --git a/README.md b/README.md
index 801a586..da0d61a 100644
--- a/README.md
+++ b/README.md
@@ -34,9 +34,7 @@ grunt.initConfig({
stoponerror: false,
relaxerror: []
},
- files: {
- ['path/to/file.html', 'path/to/*.html'];
- },
+ files: ['path/to/file.html', 'path/to/*.html'],
},
});
```
@@ -55,9 +53,7 @@ grunt.initConfig({
stoponerror: false,
relaxerror: []
},
- files: {
- ['test/fixtures/**.html'],
- },
+ files: ['test/fixtures/**.html'],
},
});
```
@@ -86,9 +82,7 @@ grunt.initConfig({
options: {
relaxerror: ['Document is missing a DOCTYPE declaration']
},
- files: {
- ['test/fixtures/**.html'],
- },
+ files: ['test/fixtures/**.html'],
},
});