phpcs.xml 536 B

12345678910111213141516171819202122
  1. <?xml version="1.0"?>
  2. <ruleset name="Coding standard">
  3. <description>Coding standard</description>
  4. <!-- display progress -->
  5. <arg value="p" />
  6. <arg name="colors" />
  7. <!-- inherit rules from: -->
  8. <rule ref="Shlinkio" />
  9. <!-- Paths to check -->
  10. <file>bin</file>
  11. <file>module</file>
  12. <file>data/migrations</file>
  13. <file>config</file>
  14. <file>docker/config</file>
  15. <file>public/index.php</file>
  16. <!-- Paths to exclude -->
  17. <exclude-pattern>config/params/*</exclude-pattern>
  18. </ruleset>