forked from walmartlabs/concord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckstyle.xml
25 lines (21 loc) · 836 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
<?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">
<module name="IllegalImport">
<property name="regexp" value="true"/>
<!--
Disallow star imports of Guice to avoid conflicts between "com.google.inject.Module"
and "java.lang.Module" from JDK9+
-->
<property name="illegalClasses" value="^com\.google\.inject\.\*"/>
<!--
Allow sun.* packages for the Kerberos support in the Ansible plugin
-->
<property name="illegalPkgs" value=""/>
</module>
</module>
</module>