Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
toils/phpmd.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
39 lines (34 sloc)
1.19 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- https://phpmd.org/documentation/creating-a-ruleset.html --> | |
<ruleset name="Toils PHPMD 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> | |
Rule set for toils | |
</description> | |
<!-- Import all the default sets --> | |
<rule ref="rulesets/cleancode.xml"> | |
<exclude name="StaticAccess" /> | |
</rule> | |
<rule ref="rulesets/codesize.xml"> | |
<exclude name="TooManyPublicMethods" /> | |
</rule> | |
<rule ref="rulesets/codesize.xml/TooManyPublicMethods"> | |
<properties> | |
<property name="maxmethods" value="15" /> | |
<property name="ignorepattern" value="(^(set|get|scope))i" /> | |
</properties> | |
</rule> | |
<rule ref="rulesets/controversial.xml" /> | |
<rule ref="rulesets/unusedcode.xml" /> | |
<rule ref="rulesets/naming.xml/ShortVariable"> | |
<properties> | |
<property name="exceptions" value="e,id" /> | |
</properties> | |
</rule> | |
<rule ref="rulesets/design.xml"> | |
<exclude name="CouplingBetweenObjects" /> | |
</rule> | |
</ruleset> |