You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phpmd.xml 614B

123456789
  1. <?xml version="1.0"?>
  2. <ruleset name="My first PHPMD rule set" xmlns="http://pmd.sf.net/ruleset/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" xsi:noNamespaceSchemaLocation=" http://pmd.sf.net/ruleset_xml_schema.xsd">
  3. <description> My custom rule set that checks my code... </description>
  4. <!-- Import the entire unused code rule set -->
  5. <rule ref="rulesets/unusedcode.xml" />
  6. <!-- Import the entire cyclomatic complexity rule -->
  7. <rule ref="rulesets/codesize.xml/CyclomaticComplexity" />
  8. </ruleset>