mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
9710148f76
Tasks we perform with Sourcery are rather simple and can be replaced with a basic collection of files and the generation of lists in the new `swiftlint-dev` command. This spares contributors from installing either Sourcery or Bazel.
21 lines
563 B
Swift
21 lines
563 B
Swift
// GENERATED FILE. DO NOT EDIT!
|
|
|
|
/// The reporters list containing all the reporters built into SwiftLint.
|
|
public let reportersList: [any Reporter.Type] = [
|
|
CSVReporter.self,
|
|
CheckstyleReporter.self,
|
|
CodeClimateReporter.self,
|
|
EmojiReporter.self,
|
|
GitHubActionsLoggingReporter.self,
|
|
GitLabJUnitReporter.self,
|
|
HTMLReporter.self,
|
|
JSONReporter.self,
|
|
JUnitReporter.self,
|
|
MarkdownReporter.self,
|
|
RelativePathReporter.self,
|
|
SARIFReporter.self,
|
|
SonarQubeReporter.self,
|
|
SummaryReporter.self,
|
|
XcodeReporter.self,
|
|
]
|