Skip to content

Commit ae77a89

Browse files
Update data for Zig 0.11.0 (#1383)
Signed-off-by: Eric Joldasov <[email protected]>
1 parent 3663cd3 commit ae77a89

File tree

5 files changed

+2060
-2
lines changed

5 files changed

+2060
-2
lines changed

src/config_gen/config_gen.zig

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ fn generateSchemaFile(allocator: std.mem.Allocator, config: Config, path: []cons
154154
}
155155

156156
try std.json.stringify(schema, .{
157-
.whitespace = .{},
157+
.whitespace = .indent_4,
158158
.emit_null_optional_fields = false,
159159
}, buff_out.writer());
160160
try buff_out.writer().writeByte('\n');
@@ -273,7 +273,7 @@ fn generateVSCodeConfigFile(allocator: std.mem.Allocator, config: Config, path:
273273
var writer = buffered_writer.writer();
274274

275275
try std.json.stringify(configuration, .{
276-
.whitespace = .{},
276+
.whitespace = .indent_4,
277277
.emit_null_optional_fields = false,
278278
}, writer);
279279

0 commit comments

Comments
 (0)