21 lines
515 B
XML
21 lines
515 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Roots">
|
|
<description>Roots Coding Standards</description>
|
|
|
|
<!-- Scan these files -->
|
|
<file>functions.php</file>
|
|
<file>src</file>
|
|
|
|
<!-- Show colors in console -->
|
|
<arg value="-colors"/>
|
|
|
|
<!-- Show sniff codes in all reports -->
|
|
<arg value="s"/>
|
|
|
|
<!-- Use PSR-2 as a base -->
|
|
<rule ref="PSR2">
|
|
<!-- Allow braces on same line for procedural functions -->
|
|
<exclude name="Squiz.Functions.MultiLineFunctionDeclaration.BraceOnSameLine"/>
|
|
</rule>
|
|
</ruleset>
|