phpcs.xml.dist 920 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0"?>
  2. <ruleset name="phpDocumentor">
  3. <description>The coding standard for phpDocumentor.</description>
  4. <file>src</file>
  5. <file>tests</file>
  6. <arg value="p"/>
  7. <rule ref="PSR2" />
  8. <rule ref="Doctrine">
  9. <exclude name="SlevomatCodingStandard.TypeHints.UselessConstantTypeHint.UselessDocComment" />
  10. </rule>
  11. <rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
  12. <exclude-pattern>tests/phpDocumentor/GraphViz/Test/GraphTest\.php</exclude-pattern>
  13. </rule>
  14. <rule ref="SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingTraversableReturnTypeHintSpecification">
  15. <exclude-pattern>tests/phpDocumentor/PHPStan/MethodReflectionExtensionTest\.php</exclude-pattern>
  16. </rule>
  17. <rule ref="Generic.Formatting.SpaceAfterNot">
  18. <properties>
  19. <property name="spacing" value="0" />
  20. </properties>
  21. </rule>
  22. </ruleset>