19 lines
696 B
Plaintext
19 lines
696 B
Plaintext
|
|
<?xml version="1.0"?>
|
||
|
|
<ruleset>
|
||
|
|
<arg name="basepath" value="." />
|
||
|
|
<arg name="extensions" value="php" /> <!-- which extensions to look for -->
|
||
|
|
<arg name="parallel" value="80" /> <!-- how many parallel processes to run -->
|
||
|
|
<arg name="colors" />
|
||
|
|
<arg name="cache" value=".phpcs.cache" /> <!-- cache the results and don't commit them -->
|
||
|
|
<arg value="np" /> <!-- n = ignore warnings, p = show progress -->
|
||
|
|
|
||
|
|
<file>src</file>
|
||
|
|
<file>tests</file>
|
||
|
|
|
||
|
|
<rule ref="DMS"/>
|
||
|
|
|
||
|
|
<rule ref="SlevomatCodingStandard.ControlStructures.DisallowEqualOperators.DisallowedEqualOperator">
|
||
|
|
<exclude-pattern>src/Constraint/ArraySubset.php</exclude-pattern>
|
||
|
|
</rule>
|
||
|
|
</ruleset>
|