-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpmd.xml
18 lines (17 loc) · 876 Bytes
/
phpmd.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
name="Ruleset"
xmlns="http://pmd.sf.net/ruleset/1.0.0"
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd">
<description>Ruleset for PHP Mess Detector that enforces coding standards</description>
<!-- Read more on custom rules @link https://phpmd.org/documentation/creating-a-ruleset.html -->
<rule ref="rulesets/cleancode.xml"/>
<rule ref="rulesets/codesize.xml"/>
<rule ref="rulesets/controversial.xml"/>
<rule ref="rulesets/design.xml"/>
<rule ref="rulesets/naming.xml"/>
<rule ref="rulesets/unusedcode.xml">
<!-- PHPMD cannot recognize parameters that are enforced by an interface -->
<exclude name="UnusedFormalParameter"/>
</rule>
</ruleset>