-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpmd.xml.dist
97 lines (89 loc) · 3.44 KB
/
phpmd.xml.dist
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0"?>
<ruleset
name="Drupal 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>
Custom ruleset for Drupal 11 development.
</description>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<rule ref="rulesets/codesize.xml">
<exclude name="TooManyMethods"/>
<exclude name="ExcessiveClassComplexity"/>
</rule>
<rule ref="rulesets/codesize.xml/TooManyMethods">
<properties>
<property name="maxmethods" value="50" />
</properties>
</rule>
<rule ref="rulesets/codesize.xml/ExcessiveClassComplexity">
<properties>
<property name="maximum" value="100" />
</properties>
</rule>
<rule ref="rulesets/cleancode.xml">
<exclude name="StaticAccess"/>
<exclude name="MissingImport" />
</rule>
<rule ref="rulesets/cleancode.xml/MissingImport">
<properties>
<property name="ignore-global" value="true"/>
</properties>
</rule>
<rule ref="rulesets/cleancode.xml/StaticAccess">
<properties>
<property name="exceptions">
<value>
\DateInterval,
\DateTime,
\DateTimeZone,
\Drupal,
\Drupal\Component\Plugin\Factory\DefaultFactory,
\Drupal\Component\Serialization\Json,
\Drupal\Component\Utility\Crypt,
\Drupal\Component\Utility\Html,
\Drupal\Component\Utility\NestedArray,
\Drupal\Component\Utility\UrlHelper,
\Drupal\Core\Access\AccessResult,
\Drupal\Core\Annotation\Action,
\Drupal\Core\Cache\Cache,
\Drupal\Core\Datetime\DrupalDateTime,
\Drupal\Core\Link,
\Drupal\Core\Render\Element,
\Drupal\Core\Render\Element\Checkboxes,
\Drupal\Core\Render\Markup,
\Drupal\Core\Site\Settings,
\Drupal\Core\Url,
\Drupal\block\Entity\Block,
\Drupal\comment\Entity\Comment,
\Drupal\config_pages\Entity\ConfigPages,
\Drupal\field\Entity\FieldConfig,
\Drupal\field\Entity\FieldStorageConfig,
\Drupal\file\Entity\File,
\Drupal\media\Entity\Media,
\Drupal\node\Entity\Node,
\Drupal\user\Entity\User
</value>
</property>
</properties>
</rule>
<rule ref="rulesets/controversial.xml">
<exclude name="CamelCaseParameterName"/>
<exclude name="CamelCaseVariableName"/>
</rule>
<rule ref="rulesets/design.xml" />
<rule ref="rulesets/naming.xml">
<exclude name="ShortVariable"/>
</rule>
<rule ref="rulesets/naming.xml/ShortVariable">
<properties>
<property name="minimum" value="3"/>
<property name="exceptions" value="id"/>
</properties>
</rule>
<rule ref="rulesets/unusedcode.xml" />
</ruleset>