phpcs.xml 602 B

1234567891011121314151617181920
  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>lib</file>
  12. <file>tests</file>
  13. <!-- Include full Doctrine Coding Standard -->
  14. <rule ref="Doctrine">
  15. <exclude name="SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingNativeTypeHint" />
  16. </rule>
  17. </ruleset>