mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
5a2cf4b1fe
In particular lots of stuff that used to be needed with SourceKit that we no longer need to keep around. Identified using Periphery: https://github.com/peripheryapp/periphery
11 lines
249 B
Swift
11 lines
249 B
Swift
import SwiftLintFramework
|
|
import XCTest
|
|
|
|
// swiftlint:disable:next balanced_xctest_lifecycle
|
|
open class SwiftLintTestCase: XCTestCase {
|
|
override open class func setUp() {
|
|
super.setUp()
|
|
RuleRegistry.registerAllRulesOnce()
|
|
}
|
|
}
|