mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 06:56:10 +01:00
Daniel Siepmann
59272afffd
Also apply ./vendor/bin/phpcbf to auto migrate what is possible. Relates: #8092
21 lines
566 B
XML
21 lines
566 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="project">
|
|
<description>This project coding standard</description>
|
|
|
|
<file>Classes/</file>
|
|
<file>Tests/</file>
|
|
<file>ext_localconf.php</file>
|
|
<file>ext_tables.php</file>
|
|
|
|
<!-- 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" />
|
|
<rule ref="Generic.Files.LineLength.TooLong">
|
|
<exclude-pattern>/Tests/*</exclude-pattern>
|
|
</rule>
|
|
</ruleset>
|