如何在特定规则上出错而不是警告

How to error rather than warning on specific rule

我希望构建在 trailing_whitespace 上出错。我已将 trailing_whitespace: error 添加到我的 .swiftlint.yml,但它仍然只是作为警告显示。

我看过 但那是关于将 所有 警告视为错误,我只想选择性地将某些规则视为错误。

这适用于您的 .swiftlint.yml 文件:

trailing_whitespace:
  severity: error