2016-08-26 17:21:39 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<ruleset name="RSS-Bridge Ruleset">
|
|
|
|
<description>Created with the PHP Coding Standard Generator. http://edorian.github.com/php-coding-standard-generator/</description>
|
2017-03-21 21:31:10 +01:00
|
|
|
<exclude-pattern>./static</exclude-pattern>
|
2016-08-26 17:21:39 +02:00
|
|
|
<exclude-pattern>./vendor</exclude-pattern>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Duplicate class names are not allowed -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.Classes.DuplicateClassName"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Statements must not be empty -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.CodeAnalysis.EmptyStatement"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Unconditional if-statements are not allowed -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.CodeAnalysis.UnconditionalIfStatement"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Do not use final statements inside final classes -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.CodeAnalysis.UnnecessaryFinalModifier"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Do not override methods to call their parent -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- One line should not have more than 80 characters -->
|
|
|
|
<!-- One line must never exceed 120 characters -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.Files.LineLength">
|
|
|
|
<properties>
|
|
|
|
<property name="lineLimit" value="80"/>
|
|
|
|
<property name="absoluteLineLimit" value="120"/>
|
|
|
|
</properties>
|
|
|
|
</rule>
|
2017-02-14 17:00:22 +01:00
|
|
|
<!-- When calling a function: -->
|
|
|
|
<!-- Do not add a space before the opening parenthesis -->
|
|
|
|
<!-- Do not add a space after the opening parenthesis -->
|
|
|
|
<!-- Do not add a space before the closing parenthesis -->
|
|
|
|
<!-- Do not add a space before a comma -->
|
|
|
|
<!-- Add a space after a comma -->
|
|
|
|
<rule ref="Generic.Functions.FunctionCallArgumentSpacing"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Use UPPERCARE for constants -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Use lowercase for 'true', 'false' and 'null' -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.PHP.LowerCaseConstant"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Use a single string instead of concating -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.Strings.UnnecessaryStringConcat"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Use tabs for indentation -->
|
2016-09-10 19:55:49 +02:00
|
|
|
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Parameters with default values must appear last in functions -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="PEAR.Functions.ValidDefaultValue"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Use PascalCase for class names -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="PEAR.NamingConventions.ValidClassName"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Use 'elseif' instead of 'else if' -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="PSR2.ControlStructures.ElseIfDeclaration"/>
|
2017-07-29 19:28:00 +02:00
|
|
|
<!-- Do not add spaces after opening or before closing bracket -->
|
|
|
|
<rule ref="PSR2.ControlStructures.ControlStructureSpacing"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Add a new line at the end of a file -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="PSR2.Files.EndFileNewline"/>
|
2017-07-29 19:28:00 +02:00
|
|
|
<!-- Add space after closing parenthesis -->
|
|
|
|
<!-- Add body into new line -->
|
|
|
|
<!-- Close body in new line -->
|
|
|
|
<rule ref="Squiz.ControlStructures.ControlSignature">
|
|
|
|
<!-- No space after keyword (before opening parenthesis) -->
|
|
|
|
<exclude name="Squiz.ControlStructures.ControlSignature.SpaceAfterKeyword"/>
|
|
|
|
</rule>
|
2017-02-14 17:00:22 +01:00
|
|
|
<!-- When declaring a function: -->
|
|
|
|
<!-- Do not add a space before a comma -->
|
|
|
|
<!-- Add a space after a comma -->
|
|
|
|
<!-- Add a space before and after an equal sign -->
|
|
|
|
<rule ref="Squiz.Functions.FunctionDeclarationArgumentSpacing">
|
|
|
|
<properties>
|
|
|
|
<property name="equalsSpacing" value="1"/>
|
|
|
|
</properties>
|
|
|
|
</rule>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Do not add spaces when casting -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Squiz.WhiteSpace.CastSpacing"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Operators must have a space around them -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Squiz.WhiteSpace.OperatorSpacing"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Do not add a whitespace before a semicolon -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Squiz.WhiteSpace.SemicolonSpacing"/>
|
2017-02-14 16:50:34 +01:00
|
|
|
<!-- Do not add whitespace at start or end of a file or end of a line -->
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace"/>
|
2018-06-29 23:55:33 +02:00
|
|
|
<!-- Whenever possible use single quote strings -->
|
|
|
|
<rule ref="Squiz.Strings.DoubleQuoteUsage">
|
|
|
|
<exclude name="Squiz.Strings.DoubleQuoteUsage.ContainsVar" />
|
|
|
|
</rule>
|
2016-09-10 19:55:49 +02:00
|
|
|
</ruleset>
|