Disable checkstyle line length for JavaDoc links

GitHub permalinks can easily get longer than 120 characters.
This commit is contained in:
Smart123s
2022-08-05 16:25:38 +02:00
parent 55e3531718
commit bf86042c52

View File

@@ -101,6 +101,7 @@
<module name="LineLength"> <module name="LineLength">
<property name="max" value="120"/> <property name="max" value="120"/>
<property name="fileExtensions" value="java"/> <property name="fileExtensions" value="java"/>
<property name="ignorePattern" value="^ *\* *@see.+$"/>
</module> </module>
<!-- Checks for whitespace --> <!-- Checks for whitespace -->