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 'Gruntfile.js')
-rw-r--r--Gruntfile.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 28e6401..a1f3e28 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -41,12 +41,18 @@ module.exports = function(grunt) {
},
relaxerror: {
options: {
- relaxerror: ['E001'],
+ relaxerror: {
+ 'E001': [],
+ 'W005': [
+ 'test/fixtures/missing-jquery.html'
+ ]
+ },
},
files: {
'tmp/relaxerror': [
'test/fixtures/missing-doctype.html',
'test/fixtures/missing-charset.html',
+ 'test/fixtures/missing-jquery.html',
]
}
},