-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckstyle.xml
More file actions
24 lines (23 loc) · 870 Bytes
/
checkstyle.xml
File metadata and controls
24 lines (23 loc) · 870 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
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC "-//Puppet Labs//DTD Checkstyle Configuration 1.3//EN"
"http://checkstyle.sourceforge.net/dtds/configuration_1_3.dtd">
<module name="Checker">
<module name="TreeWalker">
<!-- Example of standard checks -->
<module name="LineLength">
<property name="max" value="120"/>
</module>
<module name="Indentation">
<property name="tabWidth" value="4"/>
<property name="indent" value="4"/>
</module>
<module name="FileTabCharacter"/>
<module name="JavadocStyle"/>
<module name="NoWhitespaceBefore">
<property name="allowSingleLineMethod" value="true"/>
</module>
<module name="WhitespaceAround"/>
<module name="FinalLocalVariable"/>
<module name="CheckStyle"/>
</module>
</module>