7054836723fc231c12038c49ac8a9de277ba4fc3
[lispflowmapping.git] / commons / build_tools / src / main / resources / checkstyle / java_rules.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE module PUBLIC
3     "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
4     "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
5
6 <module name="Checker">
7
8     <module name="FileTabCharacter">
9         <property name="eachLine" value="true"/>
10     </module>
11
12     <module name="RegexpSingleline">
13         <!-- \s matches whitespace character, $ matches end of line. -->
14         <property name="format" value="\s+$"/>
15         <property name="message" value="Line has trailing spaces."/>
16     </module>
17
18     <module name="RegexpHeader">
19         <property name="header"
20                   value="^/[*]+\n^ \* Copyright.*. All rights reserved.\n^ \*$\n^ \* This program and the accompanying materials are made available under the\n^ \* terms of the Eclipse Public License v1.0 which accompanies this distribution,\n^ \* and is available at http://www.eclipse.org/legal/epl-v10.html\n^ [*]+/"/>
21         <property name="multiLines" value="2"/>
22     </module>
23
24     <module name="TreeWalker">
25        <module name="RedundantImport"/>
26        <module name="UnusedImports"/>
27        <module name="AvoidStarImport"/>
28        <module name="NeedBraces"/>
29        <module name="UpperEll"/>
30        <module name="EmptyStatement"/>
31        <module name="EqualsHashCode"/>
32     </module>
33
34 </module>