mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
10 lines
364 B
Swift
10 lines
364 B
Swift
import SwiftLintCore
|
|
|
|
@AutoConfigParser
|
|
struct UnusedParameterConfiguration: SeverityBasedRuleConfiguration {
|
|
@ConfigurationElement(key: "severity")
|
|
private(set) var severityConfiguration = SeverityConfiguration<Parent>(.warning)
|
|
@ConfigurationElement(key: "allow_underscore_prefixed_names")
|
|
private(set) var allowUnderscorePrefixedNames = false
|
|
}
|