<?xml version="1.0"?>
<ruleset name="Pivotal Agency">
  <description>Pivotal Wordpress Coding Standards</description>
  
  <!-- Scan all files in directory -->
  <file>.</file>
  
  <exclude-pattern>.git/*</exclude-pattern>
  <exclude-pattern>.github/*</exclude-pattern>
  <exclude-pattern>vendor/*</exclude-pattern>
  <exclude-pattern>node_modues/*</exclude-pattern>
  <exclude-pattern>img/*</exclude-pattern>

  <!-- Scan only PHP files -->
  <arg name="extensions" value="php"/>
  
  <!-- Show colors in console -->
  <arg value="-colors"/>
  
  <!-- Show sniff codes in all reports -->
  <arg value="ns"/>
  
  <!-- Include the WordPress-Extra standard. -->
  <rule ref="WordPress-Extra">
      <!-- Exclude any rules here -->
      <exclude name="WordPress.PHP.DisallowShortTernary"/>
  </rule>
  
  <!-- Let's also check that everything is properly documented. -->
  <rule ref="WordPress-Docs"/>
  
  <!-- Add in some extra rules from other standards. -->
  <rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
  <rule ref="Generic.Commenting.Todo"/>

  <!-- Spaces for indenting -->
  <rule ref="WordPress">
    <exclude name="Generic.WhiteSpace.DisallowSpaceIndent" />
  </rule>
  <rule ref="Generic.WhiteSpace.ScopeIndent">
    <properties>
      <property name="indent" value="2"/>
      <property name="tabIndent" value="false"/>
    </properties>
  </rule>
  <rule ref="Generic.WhiteSpace.DisallowTabIndent" />
  
  <config name="minimum_supported_wp_version" value="4.9"/>

</ruleset>
