Grunt: Ignore core unit test markup for htmlllint until that codebase attribute can be replaced

This commit is contained in:
Jörn Zaefferer 2012-04-27 13:06:09 +02:00
parent 24d06bfc4d
commit 7ceb7e974f

View File

@ -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: {