Skip to content

Commit 7ceb7e9

Browse files
committed
Grunt: Ignore core unit test markup for htmlllint until that codebase attribute can be replaced
1 parent 24d06bf commit 7ceb7e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grunt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ grunt.initConfig({
151151
htmllint: {
152152
// ignore files that contain invalid html, used only for ajax content testing
153153
all: grunt.file.expand( [ "demos/**/*.html", "tests/**/*.html" ] ).filter(function( file ) {
154-
return !/(?:ajax\/content\d\.html|tabs\/data\/test\.html)/.test( file );
154+
return !/(?:ajax\/content\d\.html|tabs\/data\/test\.html|tests\/unit\/core\/core\.html)/.test( file );
155155
})
156156
},
157157
copy: {

0 commit comments

Comments
 (0)