aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2012-04-27 13:06:09 +0200
committerJörn Zaefferer <joern.zaefferer@gmail.com>2012-04-27 13:06:09 +0200
commit7ceb7e974f764c0c732171524cc767838c35bdbb (patch)
treee7497135fb917066526fdda6a3dac47d1f19cc0d /grunt.js
parent24d06bfc4de591a3410873975a7813234a84712c (diff)
downloadjquery-ui-7ceb7e974f764c0c732171524cc767838c35bdbb.tar.gz
jquery-ui-7ceb7e974f764c0c732171524cc767838c35bdbb.zip
Grunt: Ignore core unit test markup for htmlllint until that codebase attribute can be replaced
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/grunt.js b/grunt.js
index f6400be4f..f3a642998 100644
--- a/grunt.js
+++ b/grunt.js
@@ -151,7 +151,7 @@ grunt.initConfig({
htmllint: {
// ignore files that contain invalid html, used only for ajax content testing
all: grunt.file.expand( [ "demos/**/*.html", "tests/**/*.html" ] ).filter(function( file ) {
- return !/(?:ajax\/content\d\.html|tabs\/data\/test\.html)/.test( file );
+ return !/(?:ajax\/content\d\.html|tabs\/data\/test\.html|tests\/unit\/core\/core\.html)/.test( file );
})
},
copy: {