Skip to content

Commit

Permalink
Hacked around reporter identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
mildm8nnered committed Oct 1, 2023
1 parent e4b5a5a commit 2ca307d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Source/swiftlint/Commands/Configure.swift
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ extension SwiftLint {
useExcludingByPrefix: false,
useScriptInputFiles: false,
benchmark: false,
reporter: SummaryReporter.identifier,
reporter: "summary", // SummaryReporter.identifier,
quiet: false,
output: nil,
progress: true,
Expand Down Expand Up @@ -181,7 +181,8 @@ extension SwiftLint {
}

private func reporterIdentifier() -> String {
var reporterIdentifier = XcodeReporter.identifier
// var reporterIdentifier = XcodeReporter.identifier
var reporterIdentifier = "xcode"
if askUser("Do you want to use the default (\(reporterIdentifier) reporter?") {
return reporterIdentifier
}
Expand Down

0 comments on commit 2ca307d

Please sign in to comment.