From 0bb4cbc792db0be92c0d44868ed5d08660df102f Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Wed, 8 Nov 2017 17:55:15 +0100 Subject: [PATCH] build: Always exclude vendor Change-Id: Ia5d61836e3fd1c4813c5510164b3dc13009c2556 --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 37319b17..3a2f7450 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -23,7 +23,8 @@ module.exports = function ( grunt ) { jsonlint: { all: [ '**/*.json', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );