mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
Ideally, SwiftLintCore would some day only contain components that are needed to define rules. Consequently, it would be the only bundle required to import for (external) rule development.
22 lines
630 B
Swift
22 lines
630 B
Swift
// Generated using Sourcery 2.1.2 — https://github.com/krzysztofzablocki/Sourcery
|
|
// 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,
|
|
]
|