|
|
|
<?xml version="1.0"?>
|
|
|
|
<ruleset>
|
|
|
|
<!-- Scan only PHP files -->
|
|
|
|
<arg name="extensions" value="php"/>
|
|
|
|
|
|
|
|
<!-- Show colors in console -->
|
|
|
|
<arg value="-colors"/>
|
|
|
|
|
|
|
|
<!-- Show progress -->
|
|
|
|
<arg value="p"/>
|
|
|
|
|
|
|
|
<!-- Be quiet -->
|
|
|
|
<arg value="q"/>
|
|
|
|
|
|
|
|
<!-- Use HM Coding Standards -->
|
|
|
|
<rule ref="vendor/humanmade/coding-standards">
|
|
|
|
<!-- Disable all ESLint checks -->
|
|
|
|
<exclude name="HM.Debug.ESLint"/>
|
|
|
|
<!-- Disable rules Pressbooks disagrees with -->
|
|
|
|
<exclude name="WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid"/>
|
|
|
|
<exclude name="WordPress.NamingConventions.ValidVariableName.MemberNotSnakeCase"/>
|
|
|
|
<exclude name="WordPress.NamingConventions.ValidVariableName.NotSnakeCaseMemberVar"/>
|
|
|
|
<exclude name="WordPress.VIP.SessionVariableUsage"/>
|
|
|
|
<exclude name="WordPress.VIP.SessionFunctionsUsage"/>
|
|
|
|
<!-- Disable LayoutOrder until humanmade/coding-standards#5 is fixed -->
|
|
|
|
<exclude name="HM.Layout.Order.WrongOrder"/>
|
|
|
|
</rule>
|
|
|
|
|
|
|
|
<!-- Re-enable rules Pressbooks agrees with -->
|
|
|
|
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
|
|
|
|
|
|
|
|
<!-- Disable Side Effects rule for functions.php -->
|
|
|
|
<rule ref="PSR1.Files.SideEffects">
|
|
|
|
<exclude-pattern>functions.php</exclude-pattern>
|
|
|
|
</rule>
|
|
|
|
|
|
|
|
<!-- Disable Namespaced Functions for functions.php -->
|
|
|
|
<rule ref="HM.Functions.NamespacedFunctions">
|
|
|
|
<exclude-pattern>functions.php</exclude-pattern>
|
|
|
|
</rule>
|
|
|
|
</ruleset>
|