如何识别 error/warning 是否使用 swiftlint 规则创建

How to identify if the error/warning is created with swiftlint rules

我正在为我的 xcode 项目设置 CI/CD。对于代码分析,我使用 swiftlint。它工作正常,我能够在我的 xcode 中看到所有错误和警告以及描述。我还编写了 运行 脚本,以便 swiftlint 仅在代码分析期间显示错误和警告,而不是在 build/run.

期间显示错误和警告

我的问题是,在我将机器人与我的 Xcode 服务器集成后,我无法确定 errors/warnings 是由于 swiftlint 规则还是由 xcode 生成的。

是否可以确定错误是由于 swiftlint 而不是 xcode 本身产生的?

很简单。 [下面的蓝色部分不是来自 swiftlint,下面的其余部分是。]

它说 "Shell Script Invocation Warning"

在消息的末尾,它为您提供了已在括号内触发的规则

(function_body_length)

我只查找以括号结尾的消息。