forked from apache/commons-math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpmd-ruleset.xml
161 lines (150 loc) · 6.09 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<ruleset name="commons-rng-customized"
xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 http://pmd.sourceforge.net/ruleset_2_0_0.xsd">
<description>
This ruleset checks the code for discouraged programming constructs.
</description>
<rule ref="category/java/bestpractices.xml">
<exclude name="UseVarargs" />
<!-- Allow private inner classes to access outer class methods/fields. -->
<exclude name="AccessorMethodGeneration" />
</rule>
<rule ref="category/java/codestyle.xml">
<exclude name="MethodArgumentCouldBeFinal" />
<exclude name="ShortVariable" />
<exclude name="LongVariable" />
<exclude name="CommentDefaultAccessModifier" />
<exclude name="DefaultPackage" />
<exclude name="CallSuperInConstructor" />
<exclude name="AbstractNaming" />
<exclude name="UselessParentheses" />
<exclude name="AtLeastOneConstructor" />
<exclude name="GenericsNaming" />
<exclude name="OnlyOneReturn" />
<exclude name="UseUnderscoresInNumericLiterals" />
<exclude name="ShortClassName" />
</rule>
<rule ref="category/java/design.xml">
<exclude name="TooManyMethods" />
<exclude name="LawOfDemeter" />
<exclude name="NcssCount" />
<exclude name="LoosePackageCoupling" />
</rule>
<rule ref="category/java/documentation.xml">
<exclude name="CommentSize" />
</rule>
<rule ref="category/java/errorprone.xml">
<exclude name="BeanMembersShouldSerialize" />
<!-- This rule is known to be poor with Java 5 and later:
https://github.com/pmd/pmd/issues/873 -->
<exclude name="DataflowAnomalyAnalysis" />
</rule>
<rule ref="category/java/multithreading.xml">
<!-- <exclude name="..." /> -->
</rule>
<rule ref="category/java/performance.xml">
<!-- <exclude name="..." /> -->
</rule>
<!-- Rule customisations. -->
<rule ref="category/java/codestyle.xml/ShortMethodName">
<properties>
<!-- TODO: Current regex effectively disables this rule. -->
<property name="violationSuppressXPath" value="//ClassOrInterfaceType[matches(@Image, '^.*$')]"/>
</properties>
</rule>
<rule ref="category/java/codestyle.xml/ClassNamingConventions">
<properties>
<property name="classPattern" value="[A-Z][a-zA-Z0-9]*" />
<property name="abstractClassPattern" value="[A-Z][a-zA-Z0-9]*" />
<property name="interfacePattern" value="[A-Z][a-zA-Z0-9]*" />
<property name="enumPattern" value="[A-Z][a-zA-Z0-9]*" />
<property name="annotationPattern" value="[A-Z][a-zA-Z0-9]*" />
<property name="utilityClassPattern" value="[A-Z][a-zA-Z0-9]*" />
</properties>
</rule>
<rule ref="category/java/design.xml/CyclomaticComplexity">
<properties>
<!-- Increase from default of 10 -->
<property name="methodReportLevel" value="20"/>
</properties>
</rule>
<rule ref="category/java/design.xml/ExcessivePublicCount">
<properties>
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='Complex'
or @Image='Fraction'
or @Image='BigFraction']"/>
</properties>
</rule>
<rule ref="category/java/design.xml/ExcessiveClassLength">
<properties>
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='Complex'
or @Image='Fraction'
or @Image='BigFraction']"/>
</properties>
</rule>
<rule ref="category/java/design.xml/GodClass">
<properties>
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='Fraction'
or @Image='BigFraction']"/>
</properties>
</rule>
<rule ref="category/java/errorprone.xml/AvoidLiteralsInIfCondition">
<properties>
<property name="ignoreMagicNumbers" value="-1,0,1" />
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='LogGamma'
or @Image='LogGammaSum'
or @Image='InverseErf'
or @Image='InvGamma1pm1']"/>
</properties>
</rule>
<rule ref="category/java/errorprone.xml/AvoidFieldNameMatchingMethodName">
<properties>
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='Complex'
or @Image='Fraction'
or @Image='BigFraction']"/>
</properties>
</rule>
<!-- Long methods are based on reference implementations. -->
<rule ref="category/java/design.xml/ExcessiveMethodLength">
<properties>
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='Complex'
or @Image='BigFraction']"/>
</properties>
</rule>
<!-- Complex parse deliberately catches and re-throws a new NumberFormatException
to include the full input string in the exception message. -->
<rule ref="category/java/design.xml/AvoidThrowingNewInstanceOfSameException">
<properties>
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='Complex']"/>
</properties>
</rule>
<rule ref="category/java/bestpractices.xml/PreserveStackTrace">
<properties>
<property name="violationSuppressXPath"
value="//ClassOrInterfaceType[@Image='Complex']"/>
</properties>
</rule>
</ruleset>