2014-02-21 197 views
17

我得到了下面的代碼:如何抑制Scalastyle警告?

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

Scalastyle抱怨不能避免在這裏空的使用。 任何方式我可以壓制這條線的警告?

回答

15

對於單行線,你只是追加// 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 
}