This repository was archived by the owner on Dec 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcheckstyle.xml
More file actions
32 lines (32 loc) · 1.28 KB
/
checkstyle.xml
File metadata and controls
32 lines (32 loc) · 1.28 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 "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
<module name="Checker">
<module name="TreeWalker">
<module name="BooleanExpressionComplexity">
<property name="max" value="5"/>
</module>
<module name="CyclomaticComplexity">
<property name="max" value="14"/>
</module>
<module name="MethodLength"/>
<module name="EmptyCatchBlock">
<property name="exceptionVariableName" value="expected|ignore"/>
</module>
<module name="AvoidStarImport"/>
<module name="IllegalImport"/>
<module name="NeedBraces">
<property name="allowSingleLineStatement" value="true"/>
</module>
</module>
<module name="FileLength">
<property name="max" value="2500" />
</module>
<module name="LineLength">
<property name="max" value="250"/>
</module>
<module name="FileTabCharacter"/>
<module name="Header">
<property name="header"
value="////////////////////////////////////////////////////////////////////\n// [Matteo] [Tossuto] [1193493]\n////////////////////////////////////////////////////////////////////"/>
</module>
</module>