-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
21 lines (18 loc) · 808 Bytes
/
phpcs.xml
File metadata and controls
21 lines (18 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="IxDF Package Standard">
<!-- Include all rules from the IxDF Coding Standard -->
<rule ref="IxDFCodingStandard">
<exclude ref="IxDFCodingStandard.Files.BemCasedFilename.InvalidCharacters"/>
<exclude ref="SlevomatCodingStandard.Classes.RequireAbstractOrFinal.ClassNeitherAbstractNorFinal"/>
<exclude ref="SlevomatCodingStandard.Files.TypeNameMatchesFileName.NoMatchBetweenTypeNameAndFileName"/>
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
<exclude-pattern>./tests*</exclude-pattern>
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<severity>1</severity><!-- Temp hide the warn -->
</rule>
<!-- Paths to check -->
<file>src</file>
<file>tests</file>
</ruleset>