mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RSS
synced 2024-11-23 23:34:07 +00:00
build: Always exclude vendor and node_modules
Change-Id: Ic48b06dc47b2de97e2d548032064b1fb30b2b94e
This commit is contained in:
parent
0182043739
commit
336e518c42
|
@ -18,7 +18,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 a new issue