<?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"/>

    <!-- 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 bootstrapping file -->
    <rule ref="PSR1.Files.SideEffects">
        <exclude-pattern>/pressbooks-mpdf.php</exclude-pattern>
    </rule>

</ruleset>
