We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dec6237 + a5e462e commit 7ff5974Copy full SHA for 7ff5974
tasks/quality.js
@@ -205,7 +205,11 @@ module.exports = function(grunt) {
205
grunt.loadNpmTasks('grunt-' + mode);
206
// Wrap each task configured for validate in the newer command.
207
// grunt-phplint already contains complex caching that does the same thing.
208
- validate = validate.map(function(item) { return item != 'phplint:all' ? mode + ':' + item : item; });
+ validate = validate.filter(function(item) {
209
+ return item.indexOf('themes:') !== 0;
210
+ }).map(function(item) {
211
+ return item != 'phplint:all' ? mode + ':' + item : item;
212
+ });
213
}
214
215
if (validate.length) {
0 commit comments