forked from jenkinsci/slack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckstyle.xml
More file actions
18 lines (18 loc) · 759 Bytes
/
checkstyle.xml
File metadata and controls
18 lines (18 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<!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="FileTabCharacter" />
<module name="NewlineAtEndOfFile" />
<module name="RegexpSingleline">
<property name="format" value="\s+$"/>
<property name="message" value="Trailing spaces are not allowed."/>
</module>
<module name="TreeWalker">
<module name="ImportOrder">
<property name="separatedStaticGroups" value="true" />
<property name="option" value="bottom" />
</module>
<module name="UnusedImports" />
<module name="AvoidStarImport" />
</module>
</module>