mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
By adding a `tools/sourcery` script that downloads and runs Sourcery via Bazel. Previously, unrelated changes might include modifications to the generated comment headers because contributors' local versions of Sourcery would be used, which we don't control. Also move the CI job to Buildkite where the bazel server is usually already warmed up and running.
21 lines
601 B
Swift
21 lines
601 B
Swift
// Generated using Sourcery 2.0.2 — https://github.com/krzysztofzablocki/Sourcery
|
|
// DO NOT EDIT
|
|
|
|
/// The reporters list containing all the reporters built into SwiftLint.
|
|
public let reportersList: [Reporter.Type] = [
|
|
CSVReporter.self,
|
|
CheckstyleReporter.self,
|
|
CodeClimateReporter.self,
|
|
EmojiReporter.self,
|
|
GitHubActionsLoggingReporter.self,
|
|
GitLabJUnitReporter.self,
|
|
HTMLReporter.self,
|
|
JSONReporter.self,
|
|
JUnitReporter.self,
|
|
MarkdownReporter.self,
|
|
RelativePathReporter.self,
|
|
SonarQubeReporter.self,
|
|
SummaryReporter.self,
|
|
XcodeReporter.self
|
|
]
|