mirror of
https://github.com/doctrine/automatic-releases.git
synced 2026-03-23 22:32:12 +01:00
23 lines
667 B
XML
23 lines
667 B
XML
<?xml version="1.0"?>
|
|
<ruleset
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"
|
|
name="doctrine/automatic-releases CS rules"
|
|
>
|
|
<arg name="basepath" value="."/>
|
|
<arg name="extensions" value="php"/>
|
|
<arg name="parallel" value="80"/>
|
|
<arg name="colors"/>
|
|
|
|
<!-- Ignore warnings and show progress of the run -->
|
|
<arg value="np"/>
|
|
|
|
<file>./public</file>
|
|
<file>./src</file>
|
|
<file>./test</file>
|
|
|
|
<rule ref="Doctrine">
|
|
<exclude name="SlevomatCodingStandard.TypeHints.TypeHintDeclaration.IncorrectReturnTypeHint"/>
|
|
</rule>
|
|
</ruleset>
|