-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckstyle.xml
22 lines (20 loc) · 879 Bytes
/
checkstyle.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
<property name="charset" value="UTF-8"/>
<module name="TreeWalker">
<!-- Ensures that the outer type file name matches the type name -->
<module name="OuterTypeFilename"/>
<!-- Checks for any unused imports in the Java source code -->
<module name="UnusedImports"/>
<!-- Check for method names check of camel case-->
<module name="MethodName">
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
</module>
<!-- local variable names check of camel case -->
<module name="LocalVariableName">
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
</module>
</module>
</module>