refactor: sort filtered_dirs entries

This commit is contained in:
CJ van den Berg 2024-10-14 12:36:43 +02:00
parent a2aca96f04
commit 0d198a1440
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -769,17 +769,17 @@ fn walk_tree_async(a_: std.mem.Allocator, root_path_: []const u8) (SpawnError ||
const filtered_dirs = [_][]const u8{
"build",
".cache",
".cargo",
".git",
".jj",
".cache",
".var",
"zig-out",
"zig-cache",
".zig-cache",
".rustup",
".npm",
".cargo",
"node_modules",
".npm",
".rustup",
".var",
".zig-cache",
"zig-cache",
"zig-out",
};
fn is_filtered_dir(dirname: []const u8) bool {