-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathcheckstyle.xml
More file actions
29 lines (25 loc) · 885 Bytes
/
checkstyle.xml
File metadata and controls
29 lines (25 loc) · 885 Bytes
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
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<module name = "Checker">
<module name="RegexpSingleline">
<!-- \s matches whitespace character, $ matches end of line. -->
<property name="format" value="\s+$"/>
</module>
<module name="TreeWalker">
<module name="NeedBraces"/>
<module name="LeftCurly">
<property name="option" value="eol"/>
<property name="maxLineLength" value="120"/>
</module>
<module name="RightCurly">
<property name="option" value="same"/>
</module>
<module name="OneStatementPerLine"/>
<module name="MultipleVariableDeclarations"/>
<module name="ArrayTypeStyle"/>
<module name="MissingSwitchDefault"/>
<module name="Indentation"/>
</module>
</module>