2016-08-26 18:21:39 +03: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 23:31:10 +03:00
|
|
|
<exclude-pattern>./static</exclude-pattern>
|
2016-08-26 18:21:39 +03:00
|
|
|
<exclude-pattern>./vendor</exclude-pattern>
|
2022-07-08 21:39:13 +03:00
|
|
|
<exclude-pattern>./templates</exclude-pattern>
|
2022-04-03 10:37:39 +03:00
|
|
|
<exclude-pattern>./config.default.ini.php</exclude-pattern>
|
2022-04-11 03:28:41 +03:00
|
|
|
<exclude-pattern>./config.ini.php</exclude-pattern>
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-11-13 20:25:37 +03:00
|
|
|
<rule ref="PSR12">
|
2017-07-29 20:28:00 +03:00
|
|
|
<exclude name="PSR1.Classes.ClassDeclaration.MissingNamespace"/>
|
2022-08-06 23:46:28 +03:00
|
|
|
<exclude name="PSR1.Classes.ClassDeclaration.MultipleClasses"/>
|
2017-07-29 20:28:00 +03:00
|
|
|
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
|
|
|
|
<exclude name="PSR12.Properties.ConstantVisibility.NotFound"/>
|
2022-07-01 16:10:30 +03:00
|
|
|
</rule>
|
|
|
|
|
2016-09-10 20:55:49 +03:00
|
|
|
<rule ref="Generic.Arrays.DisallowLongArraySyntax" />
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-12-26 23:39:36 +03:00
|
|
|
<rule ref="Squiz.WhiteSpace.FunctionOpeningBraceSpace" />
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.Files.LineLength">
|
2018-11-05 14:46:38 +03:00
|
|
|
<properties>
|
2023-09-28 00:29:08 +03:00
|
|
|
<property name="lineLimit" value="180"/>
|
|
|
|
<property name="absoluteLineLimit" value="180"/>
|
2019-10-03 22:46:49 +03:00
|
|
|
<property name="ignoreComments" value="true"/>
|
2018-11-05 14:46:38 +03:00
|
|
|
</properties>
|
2022-07-01 16:10:30 +03:00
|
|
|
</rule>
|
|
|
|
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Duplicate class names are not allowed -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.Classes.DuplicateClassName"/>
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Unconditional if-statements are not allowed -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.CodeAnalysis.UnconditionalIfStatement"/>
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Do not use final statements inside final classes -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.CodeAnalysis.UnnecessaryFinalModifier"/>
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Do not override methods to call their parent -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod"/>
|
2022-06-07 05:59:22 +03:00
|
|
|
<!-- Do not allow UTF-8 byte-order mark -->
|
|
|
|
<rule ref="Generic.Files.ByteOrderMark"/>
|
2018-11-05 14:46:38 +03: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 16:10:30 +03:00
|
|
|
|
2017-02-14 19:00:22 +03: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 18:50:34 +03:00
|
|
|
<!-- Use UPPERCARE for constants -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Use lowercase for 'true', 'false' and 'null' -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.PHP.LowerCaseConstant"/>
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Use a single string instead of concating -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Generic.Strings.UnnecessaryStringConcat"/>
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Do not add spaces when casting -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Squiz.WhiteSpace.CastSpacing"/>
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Operators must have a space around them -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Squiz.WhiteSpace.OperatorSpacing"/>
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Do not add a whitespace before a semicolon -->
|
2016-08-26 18:21:39 +03:00
|
|
|
<rule ref="Squiz.WhiteSpace.SemicolonSpacing"/>
|
2017-02-14 18:50:34 +03:00
|
|
|
<!-- Do not add whitespace at start or end of a file or end of a line -->
|
2018-12-26 23:39:36 +03: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 16:10:30 +03:00
|
|
|
|
2018-06-30 00:55:33 +03:00
|
|
|
<!-- Whenever possible use single quote strings -->
|
|
|
|
<rule ref="Squiz.Strings.DoubleQuoteUsage">
|
|
|
|
<exclude name="Squiz.Strings.DoubleQuoteUsage.ContainsVar" />
|
|
|
|
</rule>
|
2016-09-10 20:55:49 +03:00
|
|
|
</ruleset>
|