From 7ceb7e974f764c0c732171524cc767838c35bdbb Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Fri, 27 Apr 2012 13:06:09 +0200 Subject: [PATCH] Grunt: Ignore core unit test markup for htmlllint until that codebase attribute can be replaced --- grunt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: { -- 2.39.5