Skip to content

Commit fd631c8

Browse files
committed
qa: bump allowed line limit in CS config
The license annotation in our file-level docblocks is 121 characters, and there's no good reason to break it to the next line. As such, bumping the allowed line length to remove warnings. Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
1 parent 7bc23c1 commit fd631c8

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

phpcs.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<ruleset name="Laminas coding standard">
33
<rule ref="./vendor/laminas/laminas-coding-standard/ruleset.xml"/>
44

5+
<!-- Bumping line limit, as URL for license is one character longer -->
6+
<rule ref="Generic.Files.LineLength">
7+
<properties>
8+
<property name="lineLimit" value="121"/>
9+
</properties>
10+
</rule>
11+
512
<!-- Paths to check -->
613
<file>config</file>
714
<file>src</file>

0 commit comments

Comments
 (0)