.phpcs.xml: Drop unnecessary exclusions

Already ignored, or don't have any PHP files.

Change-Id: I644148617e2d6ce2fdb1d406ca2cc9c2b5aabbd7
This commit is contained in:
James D. Forrester 2019-04-05 17:41:33 -07:00
parent 7f18b4b9d0
commit 358d2fa01c
2 changed files with 4 additions and 7 deletions

View file

@ -7,7 +7,4 @@
<file>.</file>
<arg name="extensions" value="php,php5,inc"/>
<arg name="encoding" value="UTF-8"/>
<exclude-pattern>vendor</exclude-pattern>
<exclude-pattern>node_modules</exclude-pattern>
<exclude-pattern>lib/ve</exclude-pattern>
</ruleset>

View file

@ -8,12 +8,12 @@
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s",
"minus-x check ."
"minus-x check .",
"phpcs -sp"
],
"fix": [
"phpcbf",
"minus-x fix ."
"minus-x fix .",
"phpcbf"
]
},
"extra": {