build: Always exclude vendor and node_modules

Change-Id: Ic48b06dc47b2de97e2d548032064b1fb30b2b94e
This commit is contained in:
Umherirrender 2017-11-12 00:33:01 +01:00
parent 0182043739
commit 336e518c42
2 changed files with 3 additions and 2 deletions

View file

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

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 ."
]