diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-03-15 09:04:22 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-03-15 09:04:22 -0400 |
commit | 0cfecb62722fd3bc743141129560964ba30c4802 (patch) | |
tree | 062a2f9419de28eb06e553cb47dd3dcf201be5b3 /Gruntfile.js | |
parent | 932caaf2ddf70c889003d5b42eee4f069d2dd296 (diff) | |
download | jquery-ui-0cfecb62722fd3bc743141129560964ba30c4802.tar.gz jquery-ui-0cfecb62722fd3bc743141129560964ba30c4802.zip |
Grunt: Don't run htmllint against core_deprecated.html.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
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: { |