Skip to content

Commit b39ea17

Browse files
swift-format -i -r SourceKitLSPDevUtils/Sources
1 parent 9346b78 commit b39ea17

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

SourceKitLSPDevUtils/Sources/ConfigSchemaGen/ConfigSchemaGen.swift

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,21 @@ public struct ConfigSchemaGen {
9191

9292
var plans: [WritePlan] = []
9393

94-
plans.append(WritePlan(
95-
category: "JSON Schema",
96-
path: configSchemaJSONPath,
97-
contents: { try generateJSONSchema(from: schema, context: context) }
98-
))
94+
plans.append(
95+
WritePlan(
96+
category: "JSON Schema",
97+
path: configSchemaJSONPath,
98+
contents: { try generateJSONSchema(from: schema, context: context) }
99+
)
100+
)
99101

100-
plans.append(WritePlan(
101-
category: "Schema Documentation",
102-
path: configSchemaDocPath,
103-
contents: { try generateDocumentation(from: schema, context: context) }
104-
))
102+
plans.append(
103+
WritePlan(
104+
category: "Schema Documentation",
105+
path: configSchemaDocPath,
106+
contents: { try generateDocumentation(from: schema, context: context) }
107+
)
108+
)
105109
return plans
106110
}
107111

0 commit comments

Comments
 (0)