case Regex(_, "1", "1", -6ren">
gpt4 book ai didi

scalastyle - 如何抑制 Scalastyle 警告?

转载 作者:行者123 更新时间:2023-12-03 08:34:18 28 4
gpt4 key购买 nike

我得到以下代码:

    string match {
case Regex(_, "1", "0", _, _) =>
case Regex(_, "1", "1", null, _) =>
}

Scalastyle 提示这里无法避免使用 null。
有什么办法可以抑制这条线的警告?

最佳答案

Scalastyle 理解抑制注释:

// scalastyle:off <rule id>
...
// scalastyle:on <rule id>

列出了规则 ID here

在您的情况下,id 只是 null:
// scalastyle:off null
...
// scalastyle:on null

这也在 mailing list 上得到了回答

关于scalastyle - 如何抑制 Scalastyle 警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21931431/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com