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 20:31:10 +00:00
|
|
|
<exclude-pattern>./static</exclude-pattern>
|
2016-08-26 17:21:39 +02:00
|
|
|
<exclude-pattern>./vendor</exclude-pattern>
|
2022-07-08 20:39:13 +02:00
|
|
|
<exclude-pattern>./templates</exclude-pattern>
|
2022-04-03 09:37:39 +02:00
|
|
|
<exclude-pattern>./config.default.ini.php</exclude-pattern>
|
2022-04-11 02:28:41 +02:00
|
|
|
<exclude-pattern>./config.ini.php</exclude-pattern>
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2018-11-13 18:25:37 +01:00
|
|
|
<rule ref="PSR12">
|
2017-07-29 19:28:00 +02:00
|
|
|
<exclude name="PSR1.Classes.ClassDeclaration.MissingNamespace"/>
|
2022-08-06 22:46:28 +02:00
|
|
|
<exclude name="PSR1.Classes.ClassDeclaration.MultipleClasses"/>
|
2017-07-29 19:28:00 +02:00
|
|
|
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
|
|
|
|
<exclude name="PSR12.Properties.ConstantVisibility.NotFound"/>
|
2022-07-01 15:10:30 +02:00
|
|
|
</rule>
|
|
|
|
|
2016-09-10 19:55:49 +02:00
|
|
|
<rule ref="Generic.Arrays.DisallowLongArraySyntax" />
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2018-12-26 21:39:36 +01:00
|
|
|
<rule ref="Squiz.WhiteSpace.FunctionOpeningBraceSpace" />
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2016-08-26 17:21:39 +02:00
|
|
|
<rule ref="Generic.Files.LineLength">
|
2018-11-05 12:46:38 +01:00
|
|
|
<properties>
|
2023-09-27 23:29:08 +02:00
|
|
|
<property name="lineLimit" value="180"/>
|
|
|
|
<property name="absoluteLineLimit" value="180"/>
|
2019-10-03 21:46:49 +02:00
|
|
|
<property name="ignoreComments" value="true"/>
|
2018-11-05 12:46:38 +01:00
|
|
|
</properties>
|
2022-07-01 15:10:30 +02:00
|
|
|
</rule>
|
|
|
|
|
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"/>
|
2022-07-01 15:10:30 +02:00
|
|
|
|
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"/>
|
2022-06-07 04:59:22 +02:00
|
|
|
<!-- Do not allow UTF-8 byte-order mark -->
|
|
|
|
<rule ref="Generic.Files.ByteOrderMark"/>
|
2018-11-05 12:46:38 +01:00
|
|
|
<!-- Make sure the concatenation operator has spaces around it -->
|
|
|
|
<rule ref="Squiz.Strings.ConcatenationSpacing">
|
|
|
|
<properties>
|
|
|
|
<property name="spacing" value="1"/>
|
|
|
|
<property name="ignoreNewlines" value="true"/>
|
|
|
|
</properties>
|
|
|
|
</rule>
|
2022-07-01 15:10:30 +02:00
|
|
|
|
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"/>
|
2022-07-01 15:10:30 +02:00
|
|
|
|
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 -->
|
2018-12-26 21:39:36 +01:00
|
|
|
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
|
|
|
|
<properties>
|
|
|
|
<!--
|
|
|
|
This fixes an issue in combination with PSR2
|
|
|
|
https://github.com/squizlabs/PHP_CodeSniffer/issues/600
|
|
|
|
-->
|
|
|
|
<property name="ignoreBlankLines" value="false"/>
|
|
|
|
</properties>
|
|
|
|
</rule>
|
2022-07-01 15:10:30 +02:00
|
|
|
|
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>
|