mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
12 lines
372 B
Swift
12 lines
372 B
Swift
import SwiftLintCore
|
|
|
|
@AutoApply
|
|
struct VerticalWhitespaceConfiguration: SeverityBasedRuleConfiguration {
|
|
typealias Parent = VerticalWhitespaceRule
|
|
|
|
@ConfigurationElement(key: "severity")
|
|
private(set) var severityConfiguration = SeverityConfiguration<Parent>(.warning)
|
|
@ConfigurationElement(key: "max_empty_lines")
|
|
private(set) var maxEmptyLines = 1
|
|
}
|