mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
54 lines
1.8 KiB
Swift
54 lines
1.8 KiB
Swift
import SwiftLintCore
|
|
|
|
@AutoConfigParser
|
|
struct OverriddenSuperCallConfiguration: SeverityBasedRuleConfiguration {
|
|
private static let defaultIncluded = [
|
|
// NSObject
|
|
"awakeFromNib()",
|
|
"prepareForInterfaceBuilder()",
|
|
// UICollectionViewLayout
|
|
"invalidateLayout()",
|
|
"invalidateLayout(with:)",
|
|
"invalidateLayoutWithContext(_:)",
|
|
// UIView
|
|
"prepareForReuse()",
|
|
"updateConstraints()",
|
|
// UIViewController
|
|
"addChildViewController(_:)",
|
|
"decodeRestorableState(with:)",
|
|
"decodeRestorableStateWithCoder(_:)",
|
|
"didReceiveMemoryWarning()",
|
|
"encodeRestorableState(with:)",
|
|
"encodeRestorableStateWithCoder(_:)",
|
|
"removeFromParentViewController()",
|
|
"setEditing(_:animated:)",
|
|
"transition(from:to:duration:options:animations:completion:)",
|
|
"transitionCoordinator()",
|
|
"transitionFromViewController(_:toViewController:duration:options:animations:completion:)",
|
|
"viewDidAppear(_:)",
|
|
"viewDidDisappear(_:)",
|
|
"viewDidLoad()",
|
|
"viewWillAppear(_:)",
|
|
"viewWillDisappear(_:)",
|
|
// XCTestCase
|
|
"invokeTest()",
|
|
]
|
|
|
|
@ConfigurationElement(key: "severity")
|
|
private(set) var severityConfiguration = SeverityConfiguration<Parent>(.warning)
|
|
@ConfigurationElement(key: "excluded")
|
|
private(set) var excluded = [String]()
|
|
@ConfigurationElement(key: "included")
|
|
private(set) var included = ["*"]
|
|
|
|
var resolvedMethodNames: [String] {
|
|
var names: [String] = []
|
|
if included.contains("*"), !excluded.contains("*") {
|
|
names += Self.defaultIncluded
|
|
}
|
|
names += included.filter { $0 != "*" }
|
|
names = names.filter { !excluded.contains($0) }
|
|
return names
|
|
}
|
|
}
|