Files
Danny Mösch 58928b7e40 Enforce any on existential types (#5273)
This makes syntactically clear which types are rather expensive.
2023-10-12 08:37:23 +02:00

6 lines
180 B
Swift

/// The rule list containing all available rules built into SwiftLintCore.
public let coreRules: [any Rule.Type] = [
CustomRules.self,
SuperfluousDisableCommandRule.self
]