Skip to content

Commit

Permalink
Merge pull request #1 from kkirsz/patch-1
Browse files Browse the repository at this point in the history
Create rulesetmd.xml
  • Loading branch information
kubaplas authored Oct 23, 2017
2 parents f7bff3f + 5329705 commit fc93af5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Standards/Pimcore5/rulesetmd.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<ruleset name="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>
My custom rule set that checks my code...
</description>
<rule ref="rulesets/codesize.xml" />
<rule ref="rulesets/controversial.xml" />
<rule ref="rulesets/design.xml" />
<rule ref="rulesets/naming.xml">
<exclude name="ShortVariable" />
</rule>
<rule ref="rulesets/naming.xml/ShortVariable">
<properties>
<property name="exceptions" description="Comma-separated list of exceptions" value="id"/>
</properties>
</rule>
</ruleset>

0 comments on commit fc93af5

Please sign in to comment.