2020-02-25 20:06:38 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<ruleset name="project">
|
|
|
|
<description>This project coding standard</description>
|
|
|
|
|
|
|
|
<file>Classes/</file>
|
2020-02-25 21:19:18 +01:00
|
|
|
<file>Tests/</file>
|
2020-02-25 20:06:38 +01:00
|
|
|
|
|
|
|
<!-- Set default settings -->
|
|
|
|
<arg value="sp"/>
|
|
|
|
<arg name="colors"/>
|
|
|
|
<arg name="encoding" value="utf-8" />
|
|
|
|
<arg name="extensions" value="php" />
|
|
|
|
|
|
|
|
<!-- Base rules -->
|
|
|
|
<rule ref="PSR12" />
|
2020-04-07 15:04:20 +02:00
|
|
|
<rule ref="Generic.Files.LineLength.TooLong">
|
|
|
|
<exclude-pattern>/Tests/*</exclude-pattern>
|
|
|
|
</rule>
|
2021-05-21 18:16:33 +02:00
|
|
|
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
|
|
|
|
<exclude-pattern>/Classes/Hooks/DataHandler.php</exclude-pattern>
|
|
|
|
</rule>
|
2020-02-25 20:06:38 +01:00
|
|
|
</ruleset>
|