-
Notifications
You must be signed in to change notification settings - Fork 0
CAT 027
unurgunite edited this page Jul 11, 2026
·
3 revisions
Severity:
error• Confidence:high• Auto-fix: ❌
Warning
This rule flags real bugs, not just performance issues.
Tempfile resource leak — Tempfile must be closed and unlinked after use. Use the block form to ensure cleanup.
f = Tempfile.new("tmp")
f.print "data"Tip
This rule can significantly improve performance in hot code paths.
Note
See bench results at bench/cat-027/