forked from AmadeusITGroup/odyssey-reactive-messaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkstyle.xml
26 lines (26 loc) · 1.06 KB
/
checkstyle.xml
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
<?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">
<module name="RegexpMultiline">
<property name="format" value="(?s:(\r\n|\r).*)" />
<property name="message"
value="CRLF and CR line endings are prohibited, but this file uses them." />
</module>
<module name="TreeWalker">
<module name="CustomImportOrder">
<property name="customImportOrderRules"
value="STATIC###STANDARD_JAVA_PACKAGE###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE" />
<property name="specialImportsRegExp"
value="^org\." />
<property name="thirdPartyPackageRegExp"
value="^com\." />
<property name="sortImportsInGroupAlphabetically"
value="true" />
<property name="separateLineBetweenGroups"
value="true" />
</module>
<module name="UnusedImports"/>
</module>
</module>