- Disallow parseInt() and Number.parseInt() in favor of binary, octal, and hexadecimal literals
This rule disallows calls to parseInt() or Number.parseInt() if called with two arguments: a string; and a radix option of 2 (binary), 8 (octal), or 16 (hexadecimal).
You can check them out here.