shlink/phpcs.xml

23 lines
588 B
XML
Raw Normal View History

2016-04-10 10:38:07 +03:00
<?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 -->
2016-07-19 17:50:02 +03:00
<file>module</file>
2016-04-10 10:38:07 +03:00
<file>config</file>
<file>public/index.php</file>
</ruleset>