phpcs.xml.dist 533 B

12345678910111213141516171819
  1. <?xml version="1.0"?>
  2. <ruleset>
  3. <arg name="basepath" value="."/>
  4. <arg name="extensions" value="php"/>
  5. <arg name="parallel" value="80"/>
  6. <arg name="cache" value=".phpcs-cache"/>
  7. <arg name="colors"/>
  8. <!-- Ignore warnings, show progress of the run and show sniff names -->
  9. <arg value="nps"/>
  10. <!-- Directories to be checked -->
  11. <file>src</file>
  12. <file>tests/unit</file>
  13. <file>tests/functional</file>
  14. <!-- Include full Unleashed Coding Standard -->
  15. <rule ref="Unleashed"/>
  16. </ruleset>