build: Always exclude vendor

Change-Id: I5f700b6f1f883852c7828b8fd7827440e7d56f42
This commit is contained in:
Umherirrender 2017-11-08 17:54:47 +01:00
parent cf6a9f455d
commit 6215466509

View file

@ -17,7 +17,8 @@ module.exports = function ( grunt ) {
jsonlint: {
all: [
'**/*.json',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
}
} );