mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
08.08.2014 203ee4ad1b0dd1264fc280992bedf6e69f2a01f6
Relax checkstyle rules in line with dev trunk:

* extend max line length from 80 to 120
* allow poorly formed Javadoc on private and package scope members (e.g. to allow for a method description, but no need for parameter descriptions).
1 files modified
6 ■■■■ changed files
opends/ext/checkstyle/opends-checkstyle.xml 6 ●●●● patch | view | raw | blame | history
opends/ext/checkstyle/opends-checkstyle.xml
@@ -37,16 +37,16 @@
    <!-- Ensure that all Javadoc comments are well-formed -->
    <module name="JavadocStyle">
      <property name="scope" value="private" />
      <property name="scope" value="protected" />
      <property name="checkFirstSentence" value="true" />
      <property name="checkEmptyJavadoc" value="true" />
      <property name="checkHtml" value="true" />
    </module>
    <!-- Ensure that no line exceeds 80 characters in length -->
    <!-- Ensure that no line exceeds 120 characters in length -->
    <module name="LineLength">
      <property name="max" value="80" />
      <property name="max" value="120" />
    </module>