Files
2025-09-22 19:13:36 -07:00

17 lines
476 B
Swift

// Created by Andy Bartholomew on 5/30/25.
// Copyright © 2025 Airbnb Inc. All rights reserved.
import Foundation
public extension FormatRule {
static let throwingTests = FormatRule(
help: "Write tests that use `throws` instead of using `try!`.",
deprecationMessage: "Renamed to `noForceTryInTests`.",
disabledByDefault: true
) { formatter in
FormatRule.noForceTryInTests.apply(with: formatter)
} examples: {
nil
}
}