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 <aherb...@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>