Merge ".phpcs.xml: Drop unnecessary exclusions"

This commit is contained in:
jenkins-bot 2019-04-06 04:23:30 +00:00 committed by Gerrit Code Review
commit 08fa82bbe5
2 changed files with 4 additions and 7 deletions

View file

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

View file

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