-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpmd.xml
44 lines (44 loc) · 1.74 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
<?xml version="1.0"?>
<ruleset name="Laravel 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">
<description>
Laravel Rule Set by Norman Huth ● https://huth.it
</description>
<!-- Clean Code Rules -->
<rule ref="rulesets/cleancode.xml">
<exclude name="BooleanArgumentFlag"/>
<exclude name="ElseExpression"/>
<exclude name="IfStatementAssignment"/>
<exclude name="StaticAccess"/>
</rule>
<!-- Code Size Rules -->
<rule ref="rulesets/codesize.xml"/>
<!-- Controversial Rules -->
<rule ref="rulesets/controversial.xml"/>
<!-- Design Rules -->
<rule ref="rulesets/design.xml"/>
<!-- Naming Rules -->
<rule ref="rulesets/naming.xml">
<exclude name="ShortVariable"/>
</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="id,i,j,k,e,fp"/>
</properties>
</rule>
<!--Unused Code Rules -->
<rule ref="rulesets/unusedcode.xml">
<exclude name="UnusedFormalParameter"/>
</rule>
</ruleset>