mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 09:12:51 +01:00
27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Deployer"
|
||
|
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
|
||
|
<config name="installed_paths" value="../../slevomat/coding-standard"/><!-- relative path from PHPCS source location -->
|
||
|
|
||
|
<rule ref="SlevomatCodingStandard.TypeHints.DeclareStrictTypes">
|
||
|
<properties>
|
||
|
<property name="newlinesCountBetweenOpenTagAndDeclare" value="0" />
|
||
|
<property name="newlinesCountAfterDeclare" value="1" />
|
||
|
<property name="spacesCountAroundEqualsSign" value="0" />
|
||
|
</properties>
|
||
|
</rule>
|
||
|
<rule ref="SlevomatCodingStandard.TypeHints.ParameterTypeHint">
|
||
|
<exclude name="SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingTraversableTypeHintSpecification" />
|
||
|
</rule>
|
||
|
<rule ref="SlevomatCodingStandard.TypeHints.ReturnTypeHint">
|
||
|
<exclude name="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingTraversableTypeHintSpecification" />
|
||
|
</rule>
|
||
|
|
||
|
<file>src/Configuration</file>
|
||
|
|
||
|
<arg name="basepath" value="."/>
|
||
|
<arg name="colors"/>
|
||
|
<arg name="parallel" value="75"/>
|
||
|
<arg value="np"/>
|
||
|
</ruleset>
|