Skip to content

unicorn/no-zero-fractions Style

🛠️ An auto-fix is available for this rule.

What it does

Prevents the use of zero fractions.

Why is this bad?

There is no difference in JavaScript between, for example, 1, 1.0 and 1., so prefer the former for consistency and brevity.

Example

Examples of incorrect code for this rule:

javascript
const foo = 1.0;
const foo = -1.0;
const foo = 123_456.000_000;

Examples of correct code for this rule:

javascript
const foo = 1;
const foo = -1;
const foo = 123456;
const foo = 1.1;

How to use

To enable this rule in the CLI or using the config file, you can use:

bash
oxlint --deny unicorn/no-zero-fractions
json
{
  "rules": {
    "unicorn/no-zero-fractions": "error"
  }
}

References

Released under the MIT License.