mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
12 lines
440 B
Swift
12 lines
440 B
Swift
import SwiftLintCore
|
|
|
|
@AutoConfigParser
|
|
struct UnneededOverrideConfiguration: SeverityBasedRuleConfiguration {
|
|
@ConfigurationElement(key: "severity")
|
|
private(set) var severityConfiguration = SeverityConfiguration<Parent>(.warning)
|
|
@ConfigurationElement(key: "affect_initializers")
|
|
private(set) var affectInits = false
|
|
@ConfigurationElement(key: "excluded_methods")
|
|
private(set) var excludedMethods = Set<String>()
|
|
}
|