mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-30 21:30:14 +02:00
Reformat codebase v4 (#2872)
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
This commit is contained in:
72
phpcs.xml
72
phpcs.xml
@@ -5,10 +5,28 @@
|
||||
<exclude-pattern>./vendor</exclude-pattern>
|
||||
<exclude-pattern>./config.default.ini.php</exclude-pattern>
|
||||
<exclude-pattern>./config.ini.php</exclude-pattern>
|
||||
|
||||
<rule ref="PSR12">
|
||||
<exclude name="PSR1.Classes.ClassDeclaration.MissingNamespace"/>
|
||||
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
|
||||
<exclude name="PSR12.Properties.ConstantVisibility.NotFound"/>
|
||||
</rule>
|
||||
|
||||
<rule ref="Generic.Arrays.DisallowLongArraySyntax" />
|
||||
|
||||
<rule ref="Squiz.WhiteSpace.FunctionOpeningBraceSpace" />
|
||||
|
||||
<rule ref="Generic.Files.LineLength">
|
||||
<properties>
|
||||
<property name="lineLimit" value="140"/>
|
||||
<property name="absoluteLineLimit" value="140"/>
|
||||
<property name="ignoreComments" value="true"/>
|
||||
</properties>
|
||||
</rule>
|
||||
|
||||
<!-- Duplicate class names are not allowed -->
|
||||
<rule ref="Generic.Classes.DuplicateClassName"/>
|
||||
<!-- Statements must not be empty -->
|
||||
<rule ref="Generic.CodeAnalysis.EmptyStatement"/>
|
||||
|
||||
<!-- Unconditional if-statements are not allowed -->
|
||||
<rule ref="Generic.CodeAnalysis.UnconditionalIfStatement"/>
|
||||
<!-- Do not use final statements inside final classes -->
|
||||
@@ -24,15 +42,7 @@
|
||||
<property name="ignoreNewlines" value="true"/>
|
||||
</properties>
|
||||
</rule>
|
||||
<!-- One line should not have more than 80 characters -->
|
||||
<!-- One line must never exceed 120 characters -->
|
||||
<rule ref="Generic.Files.LineLength">
|
||||
<properties>
|
||||
<property name="lineLimit" value="80"/>
|
||||
<property name="absoluteLineLimit" value="120"/>
|
||||
<property name="ignoreComments" value="true"/>
|
||||
</properties>
|
||||
</rule>
|
||||
|
||||
<!-- When calling a function: -->
|
||||
<!-- Do not add a space before the opening parenthesis -->
|
||||
<!-- Do not add a space after the opening parenthesis -->
|
||||
@@ -46,37 +56,7 @@
|
||||
<rule ref="Generic.PHP.LowerCaseConstant"/>
|
||||
<!-- Use a single string instead of concating -->
|
||||
<rule ref="Generic.Strings.UnnecessaryStringConcat"/>
|
||||
<!-- Use tabs for indentation -->
|
||||
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent"/>
|
||||
<!-- Parameters with default values must appear last in functions -->
|
||||
<rule ref="PEAR.Functions.ValidDefaultValue"/>
|
||||
<!-- Use PascalCase for class names -->
|
||||
<rule ref="PEAR.NamingConventions.ValidClassName"/>
|
||||
<!-- abstract and final declarations MUST precede the visibility declaration -->
|
||||
<!-- static declaration MUST come after the visibility declaration -->
|
||||
<rule ref="PSR2.Methods.MethodDeclaration" />
|
||||
<!-- Use 'elseif' instead of 'else if' -->
|
||||
<rule ref="PSR2.ControlStructures.ElseIfDeclaration"/>
|
||||
<!-- Do not add spaces after opening or before closing bracket -->
|
||||
<rule ref="PSR2.ControlStructures.ControlStructureSpacing"/>
|
||||
<!-- Add a new line at the end of a file -->
|
||||
<rule ref="PSR2.Files.EndFileNewline"/>
|
||||
<!-- 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>
|
||||
<!-- 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>
|
||||
|
||||
<!-- Do not add spaces when casting -->
|
||||
<rule ref="Squiz.WhiteSpace.CastSpacing"/>
|
||||
<!-- Operators must have a space around them -->
|
||||
@@ -93,13 +73,7 @@
|
||||
<property name="ignoreBlankLines" value="false"/>
|
||||
</properties>
|
||||
</rule>
|
||||
<rule ref="Squiz.WhiteSpace.FunctionSpacing">
|
||||
<properties>
|
||||
<property name="spacing" value="1" />
|
||||
<property name="spacingBeforeFirst" value="0" />
|
||||
<property name="spacingAfterLast" value="0" />
|
||||
</properties>
|
||||
</rule>
|
||||
|
||||
<!-- Whenever possible use single quote strings -->
|
||||
<rule ref="Squiz.Strings.DoubleQuoteUsage">
|
||||
<exclude name="Squiz.Strings.DoubleQuoteUsage.ContainsVar" />
|
||||
|
Reference in New Issue
Block a user