Skip to content

CAT 041

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-041 — Parsing to constant

Severity: hint | Confidence: low | Auto-fix:

Caution

Low confidence rule — may produce false positives.

Description

Parsing to constant — Parsing known constant values at runtime is wasteful. Use compile-time constants instead.

Bad code

offset = "1024".to_i

Benchmark

Note

See bench results at bench/cat-041/

Clone this wiki locally