Skip to content

Commit

Permalink
Apply line length rules per @gchtr's suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
jarednova committed Feb 26, 2018
1 parent 8b2b068 commit 03e166e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions phpcs.xml
Expand Up @@ -51,6 +51,20 @@
</properties>
</rule>

<!--
Line length
Lines should be 100 chars long at max (triggers warning),
and should in no case exceed 120 characters (triggers error).
-->
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="100"/>
<property name="absoluteLineLimit" value="120"/>
</properties>
</rule>


<!--
Hook Names
Expand Down

0 comments on commit 03e166e

Please sign in to comment.