build: Always exclude vendor and node_modules

Change-Id: I3d70756cbcb304c97d6ee85acacf4bcc2e786e0e
This commit is contained in:
Umherirrender 2017-11-12 00:38:41 +01:00
parent edf4609971
commit e6b6d8f509
2 changed files with 3 additions and 2 deletions

View file

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

View file

@ -7,7 +7,7 @@
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s",
"minus-x check ."
],