build: Always exclude vendor and node_modules
Change-Id: Ib91b665a571605dc55ef76525fa901b6ceb08878
This commit is contained in:
parent
af882e4b8b
commit
4ddd50daae
|
@ -23,7 +23,8 @@ module.exports = function ( grunt ) {
|
|||
jsonlint: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
|
|
@ -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 ."
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue