We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea18b4e commit 235fb92Copy full SHA for 235fb92
1 file changed
checkstyle/checkstyle.xml
@@ -39,11 +39,13 @@
39
<module name="Translation"/>
40
41
<!-- Checks for Size Violations. -->
42
- <!-- See https://checkstyle.org/config_sizes.html -->
+ <!-- See https://checkstyle.sourceforge.io/checks/sizes/index.html -->
43
<module name="FileLength"/>
44
<module name="LineLength">
45
<property name="max" value="100"/>
46
<property name="fileExtensions" value="java"/>
47
+ <!-- Also allow links in javadocs to be longer (the default would just cover imports) -->
48
+ <property name="ignorePattern" value="^((package|import) .*)|( *\* <a href ?\= ?".*">)$"/>
49
</module>
50
51
<!-- Checks for whitespace -->
0 commit comments