Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .swiftformat
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
## Date format to use in file headers: system (default), iso, dmy, mdy, or custom.
--dateformat mdy

## Grouping for decimal numbers: 3,6 (default).
## First number: group size (the number of digits in each group).
## Second number: threshold (the minimum number of digits in a number before grouping is applied).
--decimalgrouping 3,4

## Change type with only static members to enum: always (default) or structs-only.
--enumnamespaces structs-only

Expand Down
2 changes: 1 addition & 1 deletion Tests/MockingTests/TestHelpers/TestBarrier.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ actor TestBarrier {
// MARK: Properties

/// The default number of tasks used when no task count is specified.
static let defaultTaskCount = 1000
static let defaultTaskCount = 1_000

/// The continuations waiting to be resumed once all tasks arrive.
private var continuations: [CheckedContinuation<Void, Never>] = []
Expand Down
Loading