mediawiki-extensions-Visual.../composer.json
Umherirrender 67a191f41a build: Move exclude from composer.json to .phpcs.xml
Exclude the whole lib/ve/* folder instead of the node_modules folder

The mediawiki ruleset sets exclude the node_modules folder in root
since version 19.0.0 (ab87d2eb60)

Change-Id: I585cc0524c179b2a9b472300a39d2d7c7b3ba383
2024-10-18 20:26:46 +02:00

28 lines
609 B
JSON

{
"require-dev": {
"mediawiki/mediawiki-codesniffer": "44.0.0",
"mediawiki/mediawiki-phan-config": "0.14.0",
"mediawiki/minus-x": "1.1.3",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.4.0"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"minus-x check .",
"@phpcs"
],
"fix": [
"minus-x fix .",
"phpcbf"
],
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}