12 lines
531 B
XML
12 lines
531 B
XML
![]() |
<?xml version="1.0"?>
|
||
|
<ruleset name="Custom ruleset (for tests)"
|
||
|
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">
|
||
|
|
||
|
<rule ref="rulesets/java/imports.xml">
|
||
|
<exclude name="TooManyStaticImports" /><!-- Static imports are commonly used for JUnit tests -->
|
||
|
</rule>
|
||
|
</ruleset>
|