build: Always exclude vendor and node_modules

Change-Id: I40a46de7388d6c48762c3d9452fd3341354015a0
This commit is contained in:
Umherirrender 2017-11-12 00:25:39 +01:00
parent 580dc91ba3
commit 1f153df6d2
2 changed files with 3 additions and 2 deletions

View file

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

View file

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