Sort imports in all files (#21119)

Co-authored-by: taylor.fish <contact@taylor.fish>
This commit is contained in:
pfg
2025-07-21 13:26:47 -07:00
committed by GitHub
parent 74d3610d41
commit 83760fc446
820 changed files with 8062 additions and 7467 deletions

View File

@@ -1,3 +1,5 @@
const StackReader = @This();
buffer: []const u8 = "",
offset: *usize,
message_start: *usize,
@@ -57,9 +59,6 @@ pub fn readZ(this: StackReader) AnyPostgresError!Data {
return error.ShortRead;
}
// @sortImports
const StackReader = @This();
const bun = @import("bun");
const AnyPostgresError = @import("../AnyPostgresError.zig").AnyPostgresError;
const Data = @import("../Data.zig").Data;