Skip to content

Commit

Permalink
Update phpcs.xml
Browse files Browse the repository at this point in the history
Add a new rule to extend the line limit to 180 characters.
  • Loading branch information
falcohb committed Apr 19, 2024
1 parent d091112 commit 1fb1201
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

<rule ref="PSR12"/>

<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="180"/>
<property name="absoluteLineLimit" value="200"/>
</properties>
</rule>

<file>/project/bin/</file>
<file>/project/config/</file>
<file>/project/public/</file>
Expand All @@ -18,4 +25,4 @@

<exclude-pattern>/project/bin/.phpunit/*</exclude-pattern>

</ruleset>
</ruleset>

0 comments on commit 1fb1201

Please sign in to comment.