1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-16 19:44:00 +02:00

Wrap long lines

This commit is contained in:
Jakub Vrana
2025-03-07 07:44:26 +01:00
parent 8ceaf36de7
commit 770a77ac33
6 changed files with 48 additions and 11 deletions

View File

@@ -10,7 +10,6 @@
<exclude-pattern>/(adminer|editor)[^/]*.php</exclude-pattern>
<rule ref="PSR12">
<exclude name="Generic.Files.LineLength"/>
<exclude name="Generic.Whitespace.DisallowTabIndent"/><!-- Replaced by: Generic.Whitespace.DisallowSpaceIndent -->
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
<exclude name="PSR12.Operators.OperatorSpacing.NoSpaceBefore"/>
@@ -45,6 +44,13 @@
<exclude-pattern>adminer/plugins/drivers/</exclude-pattern>
</rule>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="310"/>
</properties>
<exclude-pattern>adminer/lang/</exclude-pattern>
</rule>
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>plugins/[^/]+\.php</exclude-pattern>
<exclude-pattern>editor/(example|sqlite)\.php</exclude-pattern>