diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-04-27 13:06:09 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-04-27 13:06:09 +0200 |
commit | 7ceb7e974f764c0c732171524cc767838c35bdbb (patch) | |
tree | e7497135fb917066526fdda6a3dac47d1f19cc0d /grunt.js | |
parent | 24d06bfc4de591a3410873975a7813234a84712c (diff) | |
download | jquery-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.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: { |