mirror of
https://github.com/friendica/friendica
synced 2025-02-21 08:46:48 +00:00
26 lines
893 B
XML
26 lines
893 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Friendica Ruleset"
|
|
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>
|
|
PHPMD ruleset for friendica code.
|
|
</description>
|
|
|
|
<rule ref="rulesets/codesize.xml/ExcessiveClassComplexity">
|
|
<priority>3</priority>
|
|
<properties>
|
|
<property name="maximum" value="800" />
|
|
</properties>
|
|
</rule>
|
|
<rule ref="rulesets/codesize.xml/CyclomaticComplexity">
|
|
<priority>3</priority>
|
|
<properties>
|
|
<property name="reportLevel" value="100" />
|
|
</properties>
|
|
</rule>
|
|
|
|
</ruleset>
|