.phpcs.xml.dist 892 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0"?>
  2. <ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer"
  3. xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
  4. <file>samples</file>
  5. <file>src</file>
  6. <file>tests</file>
  7. <file>infra</file>
  8. <file>bin/generate-document</file>
  9. <file>bin/generate-locales</file>
  10. <file>bin/check-phpdoc-types</file>
  11. <exclude-pattern>samples/Header.php</exclude-pattern>
  12. <exclude-pattern>*/tests/Core/*/*Test\.(inc|css|js)$</exclude-pattern>
  13. <arg name="report-width" value="200"/>
  14. <arg name="parallel" value="80"/>
  15. <arg name="cache" value="/tmp/.phpspreadsheet.phpcs-cache"/>
  16. <arg name="colors"/>
  17. <arg value="np"/>
  18. <!-- Include the whole PSR12 standard -->
  19. <rule ref="PSR12">
  20. <exclude name="PSR2.Methods.MethodDeclaration.Underscore"/>
  21. </rule>
  22. </ruleset>