We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 902a245 + 580c5b2 commit 6540b9aCopy full SHA for 6540b9a
3 files changed
.gitignore
@@ -7,6 +7,7 @@
7
/vendor
8
.phpunit.cache
9
.phpunit.result.cache
10
+.phpcs.cache
11
12
# OS generated files #
13
######################
composer.json
@@ -67,8 +67,8 @@
67
"@stan",
68
"@test"
69
],
70
- "cs-check": "phpcs --colors -p",
71
- "cs-fix": "phpcbf --colors -p",
+ "cs-check": "phpcs",
+ "cs-fix": "phpcbf",
72
"phpstan": "tools/phpstan analyse",
73
"stan": "@phpstan",
74
"stan-baseline": "tools/phpstan --generate-baseline",
phpcs.xml
@@ -4,6 +4,11 @@
4
5
<file>src/</file>
6
<file>tests/</file>
-
+
+ <arg value="nps"/>
+ <arg name="colors"/>
+ <arg name="parallel" value="4"/>
+ <arg name="cache" value=".phpcs.cache"/>
<exclude-pattern>tests/comparisons/*</exclude-pattern>
14
</ruleset>
0 commit comments