Removed all 194 occurrences of `// autofix` comments across 46 files.
These comments marked where `_ = variable;` statements were automatically
added to suppress unused variable warnings. The discard statements remain,
only the comment suffix is removed.
Updated ban-limits.json to enforce this going forward (set to 0).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Replace `catch bun.outOfMemory()`, which can accidentally catch
non-OOM-related errors, with either `bun.handleOom` or a manual `catch
|err| switch (err)`.
(For internal tracking: fixes STAB-1070)
---------
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>