File tree 1 file changed +14
-10
lines changed
SourceKitLSPDevUtils/Sources/ConfigSchemaGen
1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -91,17 +91,21 @@ public struct ConfigSchemaGen {
91
91
92
92
var plans : [ WritePlan ] = [ ]
93
93
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
+ )
99
101
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
+ )
105
109
return plans
106
110
}
107
111
You can’t perform that action at this time.
0 commit comments