forked from BeWelcome/rox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpmd.xml
73 lines (62 loc) · 2.72 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0"?>
<ruleset name="Rox PHPMD 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">
<rule ref="rulesets/cleancode.xml">
<exclude name="StaticAccess" />
<exclude name="ElseExpression" />
</rule>
<rule name="StaticAccess"
since="1.4.0"
message="Avoid using static access to class '{0}' in method '{1}'."
class="PHPMD\Rule\CleanCode\StaticAccess"
externalInfoUrl="http://phpmd.org/rules/cleancode.html#staticaccess">
<priority>3</priority>
<properties>
<property name="exceptions" value="
\DateTime,
\Faker\Factory,
\Carbon\Carbon,
\Symfony\Component\Debug\Debug,
Doctrine\Common\Collections\Criteria,
\AnthonyMartin\GeoLocation\GeoLocation,
\Symfony\Component\HttpFoundation\File\UploadedFile
" />
</properties>
</rule>
<rule ref="rulesets/codesize.xml" />
<rule ref="rulesets/controversial.xml" />
<rule ref="rulesets/design.xml">
<exclude name="CouplingBetweenObjects"/>
</rule>
<rule ref="rulesets/naming.xml">
<exclude name="ShortVariable"/>
<exclude name="LongVariable" />
</rule>
<rule ref="rulesets/naming.xml/ShortVariable"
since="0.2"
message="Avoid variables with short names like {0}. Configured minimum length is {1}."
class="PHPMD\Rule\Naming\ShortVariable"
externalInfoUrl="http://phpmd.org/rules/naming.html#shortvariable">
<priority>3</priority>
<properties>
<property name="minimum" description="Minimum length for a variable, property or parameter name" value="3"/>
<property name="exceptions" value="a,b,id,i,e,q,qb,dt,em,io" />
</properties>
</rule>
<rule ref="rulesets/design.xml/CouplingBetweenObjects"
since="1.1.0"
message="The class {0} has a coupling between objects value of {1}. Consider to reduce the number of dependencies under {2}."
class="PHPMD\Rule\Design\CouplingBetweenObjects"
externalInfoUrl="http://phpmd.org/rules/design.html#couplingbetweenobjects">
<priority>2</priority>
<properties>
<property name="maximum" value="20" description="Maximum number of acceptable dependencies." />
</properties>
</rule>
<rule ref="rulesets/unusedcode.xml" />
</ruleset>