You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rd...@apache.org on 2004/01/11 21:57:53 UTC

cvs commit: jakarta-commons/betwixt checkstyle.xml

rdonkin     2004/01/11 12:57:53

  Added:       betwixt  checkstyle.xml
  Log:
  Added a checkstyle xml file for use with modern maven builds.
  
  Revision  Changes    Path
  1.1                  jakarta-commons/betwixt/checkstyle.xml
  
  Index: checkstyle.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <!DOCTYPE module PUBLIC
      "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
      "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
  
  <!-- commons codec customization of default Checkstyle behavior -->
  <module name="Checker">
    <property name="basedir" value="src/checkstyle"/>
    <property name="localeLanguage" value="en"/>
  
    <module name="TreeWalker">
      <!-- Verify that EVERY source file has the appropriate license -->
      <module name="Header">
        <property name="headerFile" value="LICENSE.txt"/>
      </module>
  
      <module name="OperatorWrap">
        <property name="option" value="eol"/>
      </module>
      
      <module name="LineLength">
        <property name="max" value="100"/>
      </module>
      
      <module name="ConstantName">
        <property name="format" value="^[a-zA-Z0-9_]*$"/>
      </module>
      
    </module>
  </module>
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org