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
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<!--
Checkstyle configuration for NanoDB project.
Checkstyle is very configurable. Be sure to read the documentation at
http://checkstyle.sf.net (or in your downloaded distribution).
Most Checks are configurable, be sure to consult the documentation.
To completely disable a check, just comment it out or delete it from the file.
Finally, it is worth reading the documentation.
-->
<module name="Checker">
<property name="charset" value="UTF-8"/>
<property name="severity" value="warning"/>
<module name="FileTabCharacter"/>
<module name="TreeWalker">
<module name="ArrayTypeStyle"/>
<module name="LineLength"/>
<module name="CommentsIndentation"/>
<module name="ClassTypeParameterName"/>
<module name="ConstantName"/>
<module name="AvoidStarImport"/>
<module name="DefaultComesLast"/>
<module name="DeclarationOrder"/>
<module name="EqualsHashCode"/>
</module>
</module>