Files
SwiftLint/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/PrefixedTopLevelConstantConfiguration.swift
2025-12-01 14:15:00 -05:00

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
}