We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b4749c commit 1853b91Copy full SHA for 1853b91
Sources/Danger/Plugins/SwiftLint/SwiftLint.swift
@@ -93,15 +93,19 @@ public enum SwiftLint {
93
configFile: String? = nil,
94
strict: Bool = false,
95
quiet: Bool = true,
96
- swiftlintPath: SwiftlintPath? = nil) -> [SwiftLintViolation] {
+ swiftlintPath: SwiftlintPath? = nil,
97
+ markdownAction: (String) -> Void = markdown
98
+ ) -> [SwiftLintViolation] {
99
lint(lintStyle: lintStyle,
100
danger: danger,
101
shellExecutor: shellExecutor,
102
swiftlintPath: swiftlintPath,
103
inline: inline,
104
configFile: configFile,
105
strict: strict,
- quiet: quiet)
106
+ quiet: quiet,
107
+ markdownAction: markdownAction
108
+ )
109
}
110
111
0 commit comments