import SwiftLintCore @AutoConfigParser struct XCTSpecificMatcherConfiguration: SeverityBasedRuleConfiguration { @AcceptableByConfigurationElement enum Matcher: String, CaseIterable { case oneArgumentAsserts = "one-argument-asserts" case twoArgumentAsserts = "two-argument-asserts" } @ConfigurationElement(key: "severity") private(set) var severityConfiguration = SeverityConfiguration(.warning) @ConfigurationElement(key: "matchers") private(set) var matchers = Matcher.allCases }