build: Always exclude vendor and node_modules

Change-Id: I9ece165caf87d6fc6a2656a87767d4b2d18d5475
This commit is contained in:
Umherirrender 2017-11-12 00:30:32 +01:00
parent d2da655471
commit de72f1153b
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 ."
]