我得到了下面的代碼:如何抑制Scalastyle警告?
string match {
case Regex(_, "1", "0", _, _) =>
case Regex(_, "1", "1", null, _) =>
}
Scalastyle抱怨不能避免在這裏空的使用。 任何方式我可以壓制這條線的警告?
我得到了下面的代碼:如何抑制Scalastyle警告?
string match {
case Regex(_, "1", "0", _, _) =>
case Regex(_, "1", "1", null, _) =>
}
Scalastyle抱怨不能避免在這裏空的使用。 任何方式我可以壓制這條線的警告?
Scalastyle理解抑制評論:
// scalastyle:off <rule id>
...
// scalastyle:on <rule id>
該文檔爲每個規則的ID:http://www.scalastyle.org/rules-0.4.0.html
在你的情況下,ID只是一個空:
// scalastyle:off null
...
// scalastyle:on null
對於單行線,你只是追加// scalastyle:ignore <rule-id>
到最後,就像這樣:
string match {
case Regex(_, "1", "0", _, _) =>
case Regex(_, "1", "1", null, _) => // scalastyle:ignore null
}
如果很明顯你想Scalastyle忽略,你可以通過省略規則的編號禁用當前行所有檢查什麼(正如你可以爲開/關評論一樣):
string match {
case Regex(_, "1", "0", _, _) =>
case Regex(_, "1", "1", null, _) => // scalastyle:ignore
}