forked from jenkinsci/bitbucket-branch-source-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckstyle.xml
More file actions
21 lines (21 loc) · 766 Bytes
/
Copy pathcheckstyle.xml
File metadata and controls
21 lines (21 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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">
<property name="lineSeparator" value="lf"/>
</module>
<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>