in Sources/SwiftFormatPrettyPrint/Indent+Length.swift [27:32]
func length(in configuration: Configuration) -> Int {
switch self {
case .spaces(let count): return count
case .tabs(let count): return count * configuration.tabWidth
}
}