mirror of
https://github.com/nicklockwood/SwiftFormat.git
synced 2026-05-17 10:30:35 +00:00
17 lines
476 B
Swift
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
|
|
}
|
|
}
|