checkstyle.xml 1.13 KB
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
        "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
        "https://checkstyle.org/dtds/configuration_1_3.dtd">

<!--
  Checkstyle configuration for NanoDB project.

  Checkstyle is very configurable. Be sure to read the documentation at
  http://checkstyle.sf.net (or in your downloaded distribution).
  Most Checks are configurable, be sure to consult the documentation.
  To completely disable a check, just comment it out or delete it from the file.
  Finally, it is worth reading the documentation.
-->

<module name="Checker">
    <property name="charset" value="UTF-8"/>
    <property name="severity" value="warning"/>

    <module name="FileTabCharacter"/>

    <module name="TreeWalker">
        <module name="ArrayTypeStyle"/>

        <module name="LineLength"/>
        <module name="CommentsIndentation"/>

        <module name="ClassTypeParameterName"/>
        <module name="ConstantName"/>

        <module name="AvoidStarImport"/>
        <module name="DefaultComesLast"/>

        <module name="DeclarationOrder"/>
        <module name="EqualsHashCode"/>

    </module>
</module>