我得到以下代码:

    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/

10-12 19:00