forked from vaimo/composer-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpmd.xml
26 lines (24 loc) · 861 Bytes
/
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
<?xml version="1.0"?>
<!--
Copyright (c) Vaimo Group. All rights reserved.
See LICENSE_VAIMO.txt for license details.
-->
<ruleset name="LOCAL">
<description>PHP CodeSniffer rules for PhpMd</description>
<rule ref="rulesets/cleancode.xml" >
<exclude name="MissingImport" />
<exclude name="StaticAccess" />
</rule>
<rule ref="rulesets/codesize.xml" >
<exclude name="CyclomaticComplexity" />
</rule>
<rule ref="rulesets/design.xml" />
<rule ref="rulesets/naming.xml" />
<rule ref="rulesets/unusedcode.xml" />
<rule ref="rulesets/controversial.xml" />
<rule ref="rulesets/codesize.xml/CyclomaticComplexity">
<properties>
<property name="reportLevel" description="The Cyclomatic Complexity reporting threshold" value="9"/>
</properties>
</rule>
</ruleset>