forked from ksalic/MediaMosa-Java-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpmd-ruleset.xml
75 lines (72 loc) · 3.08 KB
/
pmd-ruleset.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0"?>
<ruleset name="MediaMosa API Rules"
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">
<description>PMD Ruleset</description>
<rule ref="rulesets/basic.xml" />
<!--<rule ref="rulesets/basic-jsp.xml" />-->
<rule ref="rulesets/braces.xml" />
<rule ref="rulesets/clone.xml" />
<rule ref="rulesets/codesize.xml" />
<rule ref="rulesets/controversial.xml">
<exclude name="AvoidFinalLocalVariable" />
<exclude name="OnlyOneReturn" />
<exclude name="DefaultPackage" />
<exclude name="UnusedModifier"/>
<exclude name="CallSuperInConstructor"/>
</rule>
<rule ref="rulesets/controversial.xml/CallSuperInConstructor"><priority>4</priority></rule>
<rule ref="rulesets/controversial.xml/AvoidUsingShortType"><priority>3</priority></rule>
<rule ref="rulesets/coupling.xml" />
<rule ref="rulesets/design.xml" />
<!--<rule ref="rulesets/favorites.xml" />--><!--do not use-->
<rule ref="rulesets/finalizers.xml" />
<rule ref="rulesets/imports.xml">
<exclude name="TooManyStaticImports" />
</rule>
<rule ref="rulesets/imports.xml/TooManyStaticImports">
<priority>4</priority>
<properties>
<property name="maximumStaticImports" value="10"/>
</properties>
</rule>
<rule ref="rulesets/j2ee.xml" />
<rule ref="rulesets/javabeans.xml">
<exclude name="BeanMembersShouldSerialize" />
</rule>
<rule ref="rulesets/junit.xml" />
<rule ref="rulesets/logging-jakarta-commons.xml">
<exclude name="ProperLogger" />
</rule>
<rule ref="rulesets/logging-jakarta-commons.xml/ProperLogger"><priority>4</priority></rule>
<rule ref="rulesets/logging-java.xml" />
<rule ref="rulesets/migrating_to_13.xml" />
<rule ref="rulesets/migrating_to_14.xml" />
<rule ref="rulesets/migrating_to_15.xml" />
<rule ref="rulesets/migrating_to_junit4.xml" />
<!--<rule ref="rulesets/migrating.xml" />--><!--do not use-->
<rule ref="rulesets/naming.xml">
<exclude name="LongVariable"/>
<exclude name="ShortVariable"/>
<exclude name="AvoidFieldNameMatchingMethodName"/>
<exclude name="AbstractNaming"/>
</rule>
<rule ref="rulesets/naming.xml/AvoidFieldNameMatchingMethodName"><priority>5</priority></rule>
<rule ref="rulesets/optimizations.xml">
<exclude name="MethodArgumentCouldBeFinal" />
<exclude name="LocalVariableCouldBeFinal" />
</rule>
<rule ref="rulesets/optimizations.xml/MethodArgumentCouldBeFinal">
<priority>5</priority>
</rule>
<rule ref="rulesets/optimizations.xml/LocalVariableCouldBeFinal">
<priority>5</priority>
</rule>
<rule ref="rulesets/scratchpad.xml" />
<rule ref="rulesets/strictexception.xml" />
<rule ref="rulesets/strings.xml" />
<rule ref="rulesets/sunsecure.xml" />
<rule ref="rulesets/typeresolution.xml" />
<rule ref="rulesets/unusedcode.xml" />
</ruleset>