-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml.dist
32 lines (27 loc) · 959 Bytes
/
phpcs.xml.dist
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
27
28
29
30
31
32
<?xml version="1.0"?>
<ruleset name="project coding standard">
<!-- display progress -->
<arg value="psv"/>
<!-- use colors in output -->
<arg name="colors"/>
<!-- Paths to check -->
<file>config</file>
<file>src</file>
<file>tests</file>
<!-- Check for PSR12 compliance -->
<rule ref="PSR12"/>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<rule ref="Generic.CodeAnalysis.EmptyStatement"/>
<rule ref="Generic.Commenting.Todo"/>
<rule ref="Squiz.Arrays.ArrayDeclaration.NoComma"/>
<!-- Increase line limit for test files due to long sample strings -->
<rule ref="Generic.Files.LineLength">
<include-pattern>*/tests/*</include-pattern>
<properties>
<property name="lineLimit" value="160"/>
</properties>
</rule>
<!-- Check vor PHP compatibility -->
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="8.1-"/>
</ruleset>