From: Scott González Date: Fri, 15 Mar 2013 13:04:22 +0000 (-0400) Subject: Grunt: Don't run htmllint against core_deprecated.html. X-Git-Tag: 1.11.0-beta.1~416 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0cfecb62722fd3bc743141129560964ba30c4802;p=jquery-ui.git Grunt: Don't run htmllint against core_deprecated.html. --- diff --git a/Gruntfile.js b/Gruntfile.js index 05f599dd5..d610f2c47 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -192,7 +192,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|tests\/unit\/core\/core\.html)/.test( file ); + return !/(?:ajax\/content\d\.html|tabs\/data\/test\.html|tests\/unit\/core\/core.*\.html)/.test( file ); }) }, copy: {