Skip to content

Commit 5e62512

Browse files
committed
Remove the bin/xml-lint script
... now it is no longer used in CI.
1 parent 771cb52 commit 5e62512

File tree

3 files changed

+3
-21
lines changed

3 files changed

+3
-21
lines changed

.github/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This package contains Composer scripts to quickly run the developer checks which
6161

6262
After `composer install`, you can do:
6363

64-
- `composer lint`: Lint PHP and XML files in against parse errors.
64+
- `composer lint`: Lint PHP files against parse errors.
6565
- `composer cs`: Check the code style and code quality of the codebase via PHPCS.
6666
- `composer test`: Run the unit tests for the VIPCS sniffs.
6767
- `composer test-coverage`: Run the unit tests for the VIPCS sniffs with coverage enabled.

bin/xml-lint

-17
This file was deleted.

composer.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@
3939
"scripts": {
4040
"test-ruleset": "bin/ruleset-tests",
4141
"lint": [
42-
"bin/php-lint",
43-
"bin/xml-lint"
42+
"bin/php-lint"
4443
],
4544
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
4645
"test": "bin/unit-tests",
@@ -57,7 +56,7 @@
5756
]
5857
},
5958
"scripts-descriptions": {
60-
"lint": "VIPCS: Lint PHP and XML files in against parse errors.",
59+
"lint": "VIPCS: Lint PHP files against parse errors.",
6160
"cs": "VIPCS: Check the code style and code quality of the codebase via PHPCS.",
6261
"test": "VIPCS: Run the unit tests for the VIPCS sniffs.",
6362
"test-coverage": "VIPCS: Run the unit tests for the VIPCS sniffs with coverage enabled.",

0 commit comments

Comments
 (0)