forked from re-connect/mpb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpmd-ruleset.xml
More file actions
28 lines (26 loc) · 1.18 KB
/
phpmd-ruleset.xml
File metadata and controls
28 lines (26 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<ruleset name="MPB phpmd custom ruleset"
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>
MPB phpmd custom ruleset
</description>
<!-- Import an entire rule set -->
<rule ref="rulesets/unusedcode.xml">
<exclude name="UnusedFormalParameter"/>
</rule>
<rule ref="rulesets/controversial.xml" />
<!-- Import a specific rule from a ruleset -->
<rule ref="rulesets/cleancode.xml/UndefinedVariable" />
<rule ref="rulesets/codesize.xml/CyclomaticComplexity" />
<rule ref="rulesets/codesize.xml/NPathComplexity" />
<rule ref="rulesets/codesize.xml/ExcessiveMethodLength" />
<rule ref="rulesets/codesize.xml/ExcessiveParameterList" />
<rule ref="rulesets/design.xml/DevelopmentCodeFragment" />
<rule ref="rulesets/design.xml/EmptyCatchBlock" />
<rule ref="rulesets/design.xml/CountInLoopExpression" />
</ruleset>