0

对于测试功能,我留下了一个 KDoc 评论,引用了 GitHub 上某行代码的 URL:

/**
 * This non-MockMVC test exists only because MockMVC does not throw [MaxUploadSizeExceededException]
 * for mocked request. MockMVC test would simply skip file size check
 * See [Spring Web source code](https://github.com/spring-projects/spring-framework/blob/v5.3.14/spring-webmvc/src/main/java/org/springframework/web/servlet/DispatcherServlet.java#L1196)
 */
@Test
fun `should return 400 when file's size exceeds limit`() {...}

如您所见,该 URL 很长(比项目的 detekt 策略允许的最大行长度长)。

现在我刚刚禁用了 KDoc 注释的 MaxLineLength detekt 规则:

style:
  MaxLineLength:
    excludeCommentStatements: true

但我想知道是否有可能满足规则而不破坏 KDoc 中的可点击 URL

4

0 回答 0