usingnamespace ahg

This commit is contained in:
Don Isaac
2025-04-04 19:12:34 -07:00
parent 97504ba03f
commit 28034bab8b

View File

@@ -28,7 +28,7 @@ const words: Record<string, { reason: string; limit?: number; regex?: boolean }>
"== alloc.ptr": { reason: "The std.mem.Allocator context pointer can be undefined, which makes this comparison undefined behavior" },
"!= alloc.ptr": { reason: "The std.mem.Allocator context pointer can be undefined, which makes this comparison undefined behavior" },
[String.raw`: [a-zA-Z0-9_\.\*\?\[\]\(\)]+ = undefined,`]: { reason: "Do not default a struct field to undefined", limit: 244, regex: true },
"usingnamespace": { reason: "Zig deprecates this, and will not support it in incremental compilation.", limit: 492 },
"usingnamespace": { reason: "Zig deprecates this, and will not support it in incremental compilation.", limit: 493 },
};
const words_keys = [...Object.keys(words)];