<?xml version="1.0"?>
<ruleset name="Banklink Custom PSR2 Standard">
<!-- Include all sniffs in the PSR2 standard. -->
<rule ref="PSR2"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="150"/>
<property name="absoluteLineLimit" value="150" />
</properties>
<!-- Exclude /tests, since we have very long MAC strings -->
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
</ruleset>
|