build: Always exclude vendor

Change-Id: Ia5d61836e3fd1c4813c5510164b3dc13009c2556
This commit is contained in:
Umherirrender 2017-11-08 17:55:15 +01:00
parent 2b45d384b9
commit 0bb4cbc792

View file

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