Files
SwiftLint/Tests/TestHelpers/SwiftLintTestCase.swift
JP Simard 5a2cf4b1fe Remove dead code (#6125)
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
2025-06-21 15:19:37 -04:00

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()
}
}