mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
26 lines
697 B
XML
26 lines
697 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Coding standard">
|
|
<description>Coding standard</description>
|
|
|
|
<!-- display progress -->
|
|
<arg value="p"/>
|
|
<arg name="colors"/>
|
|
|
|
<!-- inherit rules from: -->
|
|
<rule ref="PSR2"/>
|
|
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
|
|
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
|
|
<properties>
|
|
<property name="ignoreBlankLines" value="false"/>
|
|
</properties>
|
|
</rule>
|
|
|
|
<!-- Paths to check -->
|
|
<file>bin</file>
|
|
<file>module</file>
|
|
<file>data/migrations</file>
|
|
<file>config</file>
|
|
<file>public/index.php</file>
|
|
<exclude-pattern>config/params/*</exclude-pattern>
|
|
</ruleset>
|