forked from vojtechhabarta/typescript-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkstyle.xml
30 lines (21 loc) · 829 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
23
24
25
26
27
28
29
30
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://checkstyle.sourceforge.net/dtds/configuration_1_3.dtd">
<module name="Checker">
<property name="charset" value="UTF-8"/>
<property name="fileExtensions" value="java"/>
<module name="FileTabCharacter"/>
<module name="SuppressWarningsFilter"/>
<module name="TreeWalker">
<module name="SuppressWarningsHolder"/>
<module name="ImportOrder">
<property name="option" value="inflow"/>
<property name="sortStaticImportsAlphabetically" value="true"/>
</module>
<module name="AvoidStarImport"/>
<module name="NeedBraces">
<property name="allowSingleLineStatement" value="true" />
</module>
</module>
</module>