-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.phpcs.xml
26 lines (21 loc) · 942 Bytes
/
.phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer">
<description>The coding standard.</description>
<arg name="colors"/>
<file>bin/</file>
<file>config/</file>
<file>public/</file>
<file>src/</file>
<file>tests/</file>
<rule ref="Doctrine"/>
<rule ref="Doctrine">
<exclude name="PSR1.Methods.CamelCapsMethodName"/>
<exclude-pattern>tests/*</exclude-pattern>
</rule>
<rule ref="Doctrine">
<exclude name="SlevomatCodingStandard.ControlStructures.AssignmentInCondition.AssignmentInCondition"/>
<exclude name="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingTraversableTypeHintSpecification"/>
<exclude name="SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingAnyTypeHint"/>
<exclude name="Squiz.Functions.MultiLineFunctionDeclaration.FirstParamSpacing"/>
</rule>
</ruleset>