@@ -64,7 +64,10 @@ extension CommandConfig {
6464 let servers = argExtractor. extractFlag ( named: OptionsAndFlags . servers. rawValue)
6565 let noServers = argExtractor. extractFlag ( named: OptionsAndFlags . noServers. rawValue)
6666 if servers > 0 && noServers > 0 {
67- throw CommandPluginError . conflictingFlags ( OptionsAndFlags . servers. rawValue, OptionsAndFlags . noServers. rawValue)
67+ throw CommandPluginError . conflictingFlags (
68+ OptionsAndFlags . servers. rawValue,
69+ OptionsAndFlags . noServers. rawValue
70+ )
6871 } else if servers > 0 {
6972 config. common. servers = true
7073 } else if noServers > 0 {
@@ -78,7 +81,10 @@ extension CommandConfig {
7881 let clients = argExtractor. extractFlag ( named: OptionsAndFlags . clients. rawValue)
7982 let noClients = argExtractor. extractFlag ( named: OptionsAndFlags . noClients. rawValue)
8083 if clients > 0 && noClients > 0 {
81- throw CommandPluginError . conflictingFlags ( OptionsAndFlags . clients. rawValue, OptionsAndFlags . noClients. rawValue)
84+ throw CommandPluginError . conflictingFlags (
85+ OptionsAndFlags . clients. rawValue,
86+ OptionsAndFlags . noClients. rawValue
87+ )
8288 } else if clients > 0 {
8389 config. common. clients = true
8490 } else if noClients > 0 {
@@ -92,7 +98,10 @@ extension CommandConfig {
9298 let messages = argExtractor. extractFlag ( named: OptionsAndFlags . messages. rawValue)
9399 let noMessages = argExtractor. extractFlag ( named: OptionsAndFlags . noMessages. rawValue)
94100 if messages > 0 && noMessages > 0 {
95- throw CommandPluginError . conflictingFlags ( OptionsAndFlags . messages. rawValue, OptionsAndFlags . noMessages. rawValue)
101+ throw CommandPluginError . conflictingFlags (
102+ OptionsAndFlags . messages. rawValue,
103+ OptionsAndFlags . noMessages. rawValue
104+ )
96105 } else if messages > 0 {
97106 config. common. messages = true
98107 } else if noMessages > 0 {
@@ -124,7 +133,9 @@ extension CommandConfig {
124133 config. common. protocPath = argExtractor. extractSingleOption ( named: flag. rawValue)
125134
126135 case . outputPath:
127- config. common. outputPath = argExtractor. extractSingleOption ( named: flag. rawValue) ?? pluginWorkDirectory. absoluteStringNoScheme
136+ config. common. outputPath =
137+ argExtractor. extractSingleOption ( named: flag. rawValue)
138+ ?? pluginWorkDirectory. absoluteStringNoScheme
128139
129140 case . verbose:
130141 let verbose = argExtractor. extractFlag ( named: flag. rawValue)
0 commit comments