Files
SwiftLint/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/PrefixedTopLevelConstantConfiguration.swift
T

10 lines
344 B
Swift

import SwiftLintCore
@AutoConfigParser
struct PrefixedTopLevelConstantConfiguration: SeverityBasedRuleConfiguration {
@ConfigurationElement(key: "severity")
private(set) var severityConfiguration = SeverityConfiguration<Parent>(.warning)
@ConfigurationElement(key: "only_private")
private(set) var onlyPrivateMembers = false
}