Files
Danny Mösch 9710148f76 Replace Sourcery with internal implementation (#6034)
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.
2025-03-26 20:38:53 +00:00

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,
]