-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
24 lines (21 loc) · 826 Bytes
/
phpcs.xml
File metadata and controls
24 lines (21 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
<ruleset name="IxDFCodingStandard (package version)">
<!-- Include all rules from the IxDF Coding Standard -->
<rule ref="./IxDFCodingStandard/ruleset.xml"/>
<rule ref="Generic.Files.LineLength.TooLong">
<severity>1</severity>
<properties>
<property name="lineLimit" value="150"/>
<property name="absoluteLineLimit" value="150"/>
<property name="ignoreComments" value="true"/>
</properties>
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
<exclude-pattern>./tests*</exclude-pattern>
</rule>
<!-- Paths to check -->
<file>IxDFCodingStandard</file>
<file>tests</file>
<exclude-pattern>.cache</exclude-pattern>
<exclude-pattern>tests/**/data/*</exclude-pattern>
</ruleset>