shlink/phpcs.xml

51 lines
1.9 KiB
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>
2017-10-12 11:13:20 +03:00
<config name="installed_paths" value="../../slevomat/coding-standard"/>
2016-04-10 10:38:07 +03:00
<!-- display progress -->
<arg value="p"/>
<arg name="colors"/>
<!-- inherit rules from: -->
<rule ref="PSR2"/>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
2017-10-12 11:13:20 +03:00
<!-- Make sure string concatenations use 1 space between every element -->
<rule ref="Squiz.Strings.ConcatenationSpacing">
<properties>
<property name="spacing" value="1"/>
<property name="ignoreNewlines" value="true"/>
</properties>
</rule>
2016-04-10 10:38:07 +03:00
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
<properties>
<property name="ignoreBlankLines" value="false"/>
</properties>
</rule>
2017-10-12 11:13:20 +03:00
<rule ref="Squiz.Strings.DoubleQuoteUsage"/>
<rule ref="SlevomatCodingStandard.TypeHints.DeclareStrictTypes">
<properties>
<property name="newlinesCountBetweenOpenTagAndDeclare" value="1"/>
<property name="spacesCountAroundEqualsSign" value="0"/>
</properties>
</rule>
<rule ref="SlevomatCodingStandard.Namespaces.UnusedUses">
<properties>
<property name="searchAnnotations" value="true"/>
</properties>
</rule>
<!-- Force strict comparison with === or !== instead of == or != -->
<rule ref="SlevomatCodingStandard.ControlStructures.DisallowEqualOperators"/>
<rule ref="SlevomatCodingStandard.Arrays.TrailingArrayComma"/>
<rule ref="SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses"/>
<rule ref="SlevomatCodingStandard.TypeHints.ReturnTypeHintSpacing"/>
2016-04-10 10:38:07 +03:00
<!-- Paths to check -->
2016-08-17 12:47:08 +03:00
<file>bin</file>
2016-07-19 17:50:02 +03:00
<file>module</file>
<file>data/migrations</file>
2016-04-10 10:38:07 +03:00
<file>config</file>
<file>public/index.php</file>
<exclude-pattern>config/params/*</exclude-pattern>
2016-04-10 10:38:07 +03:00
</ruleset>