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.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'],
},
});