Skip to content
Snippets Groups Projects
Forked from project / ui_patterns
209 commits behind, 5 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.phpmd.xml 768 B
<?xml version="1.0"?>
<ruleset name="UI Patterns PHPMD Rules"
         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">
    <description>
        UI Patterns PHPMD Rules
    </description>

    <!-- Import the entire unused code rule set -->
    <rule ref="rulesets/unusedcode.xml" />

    <!--
        Import the entire cyclomatic complexity rule and
        customize the rule configuration.
    -->
    <rule ref="rulesets/codesize.xml/CyclomaticComplexity">
    </rule>
</ruleset>