mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
d0de084a79
add a boolean option to indent switch's block:
```
// with -indent-switch-case
switch xyz {
case .x:
doSomething()
}
```
```
// without -indent-switch-case
switch xyz {
case .x:
doSomething()
}
```