Skip to content

Commit

Permalink
Allow line length of 100
Browse files Browse the repository at this point in the history
  • Loading branch information
cweiske committed Jul 20, 2024
1 parent 613b29b commit bfbbe9f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions phpcs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0"?>
<ruleset name="JsonMapper"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpcs.xsd">

<rule ref="PEAR"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="100"/>
</properties>
</rule>

<file>src/</file>
</ruleset>

0 comments on commit bfbbe9f

Please sign in to comment.