Possible Errors

Best Practices

Strict Mode

Variables

Node.js and CommonJS

Stylistic Issues

ECMAScript 6

prefer-numeric-literals

- Disallow parseInt() and Number.parseInt() in favor of binary, octal, and hexadecimal literals

Fixable

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).

What ESLint should do when it catches the rule break

Show a warning

Rule examples

You can check them out here.