You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2020/09/01 14:05:01 UTC

[commons-codec] 02/05: Allow long lines in javadoc comments, e.g. for

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit a1b37fe3a01a1300b7bfa3c95d82de8aeb9000f0
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Sep 1 14:53:38 2020 +0100

    Allow long lines in javadoc comments, e.g. for <A href="...">
---
 checkstyle.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/checkstyle.xml b/checkstyle.xml
index efc00c8..507151a 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -65,6 +65,8 @@ limitations under the License.
       <property name="option" value="eol" />
     </module>
     <module name="LineLength">
+      <!-- Ignore lines that begin with " * ", such as within a Javadoc comment. -->
+      <property name="ignorePattern" value="^ *\* *[^ ]"/>
       <property name="max" value="120"/>
     </module>
   </module>