Skip to content
← Back to rules

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.

Examples ​

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 using the config file or in the CLI, you can use:

json
{
  "rules": {
    "unicorn/no-zero-fractions": "error"
  }
}
ts
import { defineConfig } from "oxlint";

export default defineConfig({
  rules: {
    "unicorn/no-zero-fractions": "error",
  },
});
bash
oxlint --deny unicorn/no-zero-fractions

Version ​

This rule was added in v0.0.18.

References ​