-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckstyle.xml
More file actions
32 lines (31 loc) · 1.21 KB
/
checkstyle.xml
File metadata and controls
32 lines (31 loc) · 1.21 KB
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
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
<module name="Header">
<property name="header" value="//////////////////////////////////////////////////////////////////// // Stefano Longhena 2111936 // Alessandro Savio 2101046 ////////////////////////////////////////////////////////////////////"/>
</module>
<module name="FileTabCharacter"/>
<module name="FileLength">
<property name="max" value="1000"/>
</module>
<module name="LineLength">
<property name="max" value="120"/>
</module>
<module name="TreeWalker">
<module name="AvoidStarImport"/>
<module name="IllegalImport"/>
<module name="MethodLength">
<property name="max" value="50"/>
</module>
<module name="NeedBraces"/>
<module name="EmptyCatchBlock"/>
<module name="BooleanExpressionComplexity">
<property name="max" value="3"/>
</module>
<module name="CyclomaticComplexity">
<property name="max" value="10"/>
</module>
</module>
</module>