21 lines
601 B
Swift
21 lines
601 B
Swift
// Generated using Sourcery 2.0.1 — 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
|
|
]
|