diff options
author | ByteHamster <info@bytehamster.com> | 2020-02-02 17:33:38 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2020-02-02 17:48:30 +0100 |
commit | b2fb239853de79e9666f405599bd708f962c3177 (patch) | |
tree | 681867a6587caeb3a025cf0224ce03c8890c21a3 /config | |
parent | 6a327f252c2074de39841522272ed9448df46443 (diff) | |
download | AntennaPod-b2fb239853de79e9666f405599bd708f962c3177.zip |
Enforce valid javadoc
Diffstat (limited to 'config')
-rw-r--r-- | config/checkstyle/checkstyle.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml index 02a370b7e..140d3c33f 100644 --- a/config/checkstyle/checkstyle.xml +++ b/config/checkstyle/checkstyle.xml @@ -91,6 +91,9 @@ <property name="tokens" value="VARIABLE_DEF"/> <property name="allowSamelineMultipleAnnotations" value="true"/> </module> + <module name="SingleLineJavadoc"> + <property name="ignoreInlineTags" value="false"/> + </module> <module name="NestedIfDepth"> <property name="max" value="4"/> </module> |