Skip to content

Commit

Permalink
Update data for Zig 0.11.0 (#1383)
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Joldasov <[email protected]>
  • Loading branch information
BratishkaErik authored Aug 7, 2023
1 parent 3663cd3 commit ae77a89
Show file tree
Hide file tree
Showing 5 changed files with 2,060 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config_gen/config_gen.zig
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ fn generateSchemaFile(allocator: std.mem.Allocator, config: Config, path: []cons
}

try std.json.stringify(schema, .{
.whitespace = .{},
.whitespace = .indent_4,
.emit_null_optional_fields = false,
}, buff_out.writer());
try buff_out.writer().writeByte('\n');
Expand Down Expand Up @@ -273,7 +273,7 @@ fn generateVSCodeConfigFile(allocator: std.mem.Allocator, config: Config, path:
var writer = buffered_writer.writer();

try std.json.stringify(configuration, .{
.whitespace = .{},
.whitespace = .indent_4,
.emit_null_optional_fields = false,
}, writer);

Expand Down
Loading

0 comments on commit ae77a89

Please sign in to comment.