-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpmd-rules.xml
63 lines (48 loc) · 2.09 KB
/
pmd-rules.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
<?xml version="1.0" encoding="UTF-8"?>
<ruleset xmlns="http://pmd.sourceforge.net/ruleset/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="All Java Rules" xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd">
<description>PMD Rules for Ledger</description>
<rule ref="category/java/bestpractices.xml" />
<rule ref="category/java/codestyle.xml">
<exclude name="AtLeastOneConstructor" />
<exclude name="LocalVariableCouldBeFinal" />
<exclude name="MethodArgumentCouldBeFinal" />
</rule>
<rule ref="category/java/codestyle.xml/LongVariable">
<properties>
<property name="minimum" value="32" />
</properties>
</rule>
<rule ref="category/java/design.xml">
<exclude name="LawOfDemeter" />
</rule>
<rule ref="category/java/design.xml/TooManyFields">
<properties>
<!-- increased from 15-->
<property name="maxfields" value="20" />
</properties>
</rule>
<rule ref="category/java/design.xml/UseUtilityClass">
<properties>
<property name="ignoredAnnotations" value="lombok.experimental.UtilityClass|org.springframework.boot.autoconfigure.SpringBootApplication" />
</properties>
</rule>
<rule ref="category/java/documentation.xml">
<exclude name="CommentRequired" />
</rule>
<rule ref="category/java/documentation.xml/CommentSize">
<properties>
<property name="maxLines" value="-1" />
<property name="maxLineLength" value="100" />
</properties>
</rule>
<rule ref="category/java/errorprone.xml" />
<rule ref="category/java/errorprone.xml/BeanMembersShouldSerialize">
<properties>
<property name="ignoredAnnotations" value="lombok.Data|lombok.Getter|lombok.Value|org.springframework.beans.factory.annotation.Autowired|org.springframework.context.annotation.Configuration|org.springframework.stereotype.Service;" />
<property name="prefix" value="" />
</properties>
</rule>
<rule ref="category/java/multithreading.xml" />
<rule ref="category/java/performance.xml" />
<rule ref="category/java/security.xml" />
</ruleset>