-
Notifications
You must be signed in to change notification settings - Fork 0
CAT 025
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.
File.open resource leak — File.open without a block leaks file descriptors. Use the block form for automatic closing.
f = File.open("data.txt")
content = f.gets_to_endTip
This rule can significantly improve performance in hot code paths.
Note
See bench results at bench/cat-025/