This repository has been archived by the owner on Mar 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
checkstyle.xml
92 lines (82 loc) · 4.03 KB
/
checkstyle.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
<?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="NewlineAtEndOfFile" />
<module name="FileLength" />
<module name="FileTabCharacter">
<property name="eachLine" value="true" />
</module>
<module name="RegexpSingleline">
<property name="format" value="\s+$" />
<property name="message" value="Line has trailing spaces." />
</module>
<module name="SuppressionFilter">
<!-- note that $basedir must be set to TLD of heroic in your local dev
environment for checkstyle to function. You may wish to emply the direnv
utility to set this for you. -->
<property name="file" value="${basedir}/suppressions.xml"/>
</module>
<property name="cacheFile" value="${basedir}/.cache/checkstyle-cache"/>
<module name="LineLength">
<property name="max" value="100"/>
</module>
<module name="SuppressWarningsFilter"/>
<module name="TreeWalker">
<module name="ArrayTypeStyle" />
<module name="AvoidStarImport" />
<module name="CommentsIndentation"/>
<module name="EmptyForIteratorPad" />
<!-- TODO uncomment this when someone's feeling brave enough to fix all the errors. -->
<!-- <module name="EmptyLineSeparator">-->
<!-- <!– Do Not Allow multiple empty lines between class members. –>-->
<!-- <property name="allowMultipleEmptyLines" value="false"/>-->
<!-- <!– Do Not Allow multiple empty lines inside class members –>-->
<!-- <property name="allowMultipleEmptyLinesInsideClassMembers" value="false"/>-->
<!-- <!– <!– Do Not enforce an empty line between fields. –>–>-->
<!-- <!– <property name="allowNoEmptyLineBetweenFields" value="false"/>–>-->
<!-- </module>-->
<module name="EmptyStatement" />
<module name="EqualsHashCode" />
<module name="IllegalImport" />
<module name="IllegalInstantiation" />
<!-- TODO uncomment this when someone's feeling brave enough to fix all the errors. -->
<!-- Indentation. We go with the Checkstyle/Google default of 4 spaces. For details, see
https://checkstyle.sourceforge.io/config_misc.html#Indentation_Properties .
... However, a lot (many, many files) of Heroic's java code is incorrectly indented with 2
spaces unfortunately, which means the build fails. Hence commenting this out for now. -->
<!-- <module name="Indentation"/>-->
<module name="LeftCurly" />
<module name="LocalFinalVariableName" />
<module name="LocalVariableName" />
<module name="MemberName" />
<module name="MethodLength" />
<module name="MethodName" />
<module name="MethodParamPad" />
<module name="MissingSwitchDefault" />
<module name="ModifierOrder" />
<module name="NeedBraces" />
<module name="NoWhitespaceAfter" />
<module name="NoWhitespaceBefore" />
<module name="PackageName" />
<module name="ParameterName" />
<module name="ParenPad" />
<module name="RedundantImport" />
<module name="RightCurly" />
<module name="SimplifyBooleanExpression" />
<module name="StaticVariableName" />
<module name="SuppressWarningsHolder"/>
<module name="TypecastParenPad" />
<module name="TypeName" />
<module name="UnusedImports" />
<module name="UpperEll" />
<module name="WhitespaceAfter" />
<module name="WhitespaceAround" />
</module>
<module name="Header">
<property name="headerFile" value="${basedir}/tools/java.header"/>
<property name="ignoreLines" value="2" />
<property name="fileExtensions" value="java" />
</module>
</module>