<?xml version="1.0"?>
<ruleset name="WordPress">
  <description>WordPress Coding Standards</description>

  <!-- Show colors in console -->
  <arg value="-colors"/>
	<!-- Do not print warnings -->
  <arg value="n"/>
  <!-- Show sniff codes in all reports -->
  <arg value="s"/>

	<!-- Exclude tests -->
	<exclude-pattern>tests/</exclude-pattern>
	<!-- Exclude vendor -->
	<exclude-pattern>vendor/</exclude-pattern>

	<!-- WordPress Coding Standards -->
	<rule ref="WordPress-Core"></rule>
	<rule ref="WordPress-Extra"></rule>
</ruleset>
