You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.0 KiB
22 lines
1.0 KiB
<?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="fileExtensions" value="java,js,css,xml"/>
|
|
<module name="NewlineAtEndOfFile"><property name="fileExtensions" value="java"/>
|
|
</module>
|
|
<module name="SuppressWithPlainTextCommentFilter"><property name="offCommentFormat" value="(\s+)""""/>
|
|
<property name="onCommentFormat" value="^\s+.*""";"/>
|
|
</module>
|
|
<module name="TreeWalker"><module name="UnusedImports"></module>
|
|
<module name="RegexpSinglelineJava"><property name="id" value="tabs-only"/>
|
|
<property name="format" value="^\t* "/>
|
|
<property name="message" value="Indent must use tab characters"/>
|
|
<property name="ignoreComments" value="true"/>
|
|
</module>
|
|
</module>
|
|
<module name="RegexpSingleline"><property name="id" value="trailing-spaces"/>
|
|
<property name="format" value="\s+$"/>
|
|
<property name="message" value="Line has trailing spaces."/>
|
|
</module>
|
|
</module>
|