style: swiftformat macos swift files

This commit is contained in:
Peter Steinberger
2026-01-13 05:10:04 +00:00
parent 8eb1c76337
commit 9308762d0b
3 changed files with 9 additions and 14 deletions

View File

@@ -22,17 +22,17 @@ struct WizardCliOptions {
case "--json":
opts.json = true
case "--url":
opts.url = nextValue(args, index: &i)
opts.url = self.nextValue(args, index: &i)
case "--token":
opts.token = nextValue(args, index: &i)
opts.token = self.nextValue(args, index: &i)
case "--password":
opts.password = nextValue(args, index: &i)
opts.password = self.nextValue(args, index: &i)
case "--mode":
if let value = nextValue(args, index: &i) {
opts.mode = value
}
case "--workspace":
opts.workspace = nextValue(args, index: &i)
opts.workspace = self.nextValue(args, index: &i)
default:
break
}