-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
phpmd.xml
34 lines (34 loc) · 1.01 KB
/
phpmd.xml
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
29
30
31
32
33
34
<?xml version="1.0"?>
<ruleset name="Mess Detector">
<!-- cleancode -->
<rule ref="rulesets/cleancode.xml">
<exclude name="BooleanArgumentFlag"/>
</rule>
<!-- codesize -->
<rule ref="rulesets/codesize.xml/TooManyPublicMethods">
<properties>
<property name="maxmethods" value="40"/>
</properties>
</rule>
<!-- controversial -->
<rule ref="rulesets/controversial.xml"/>
<!-- design -->
<rule ref="rulesets/design.xml/CouplingBetweenObjects">
<properties>
<property name="maximum" value="40"/>
</properties>
</rule>
<rule ref="rulesets/design.xml/NumberOfChildren">
<properties>
<property name="minimum" value="25"/>
</properties>
</rule>
<!-- naming -->
<rule ref="rulesets/naming.xml/ShortVariable">
<properties>
<property name="minimum" value="2"/>
</properties>
</rule>
<!-- unusedcode -->
<rule ref="rulesets/unusedcode.xml"/>
</ruleset>