noPrecisionLoss
¥Summary
-
规则生效日期:
v1.0.0¥Rule available since:
v1.0.0 -
诊断类别:
lint/correctness/noPrecisionLoss¥Diagnostic Category:
lint/correctness/noPrecisionLoss -
此规则为推荐规则,默认启用。
¥This rule is recommended, which means is enabled by default.
-
此规则没有修复方案。
¥This rule doesn’t have a fix.
-
此规则的默认严重级别为 error。
¥The default severity of this rule is error.
-
来源:
¥Sources:
-
与
no-loss-of-precision相同¥Same as
no-loss-of-precision -
与
lossy_float_literal相同¥Same as
lossy_float_literal
-
¥How to configure
{ "linter": { "rules": { "correctness": { "noPrecisionLoss": "error" } } }}¥Description
禁止丢失精度的文字数字
¥Disallow literal numbers that lose precision
¥Examples
¥Invalid
const x = 9007199254740993code-block.js:1:11 lint/correctness/noPrecisionLoss ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This number literal will lose precision at runtime.
> 1 │ const x = 9007199254740993
│ ^^^^^^^^^^^^^^^^
2 │
ℹ The value at runtime will be 9007199254740992
const x = 5.123000000000000000000000000001code-block.js:1:11 lint/correctness/noPrecisionLoss ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This number literal will lose precision at runtime.
> 1 │ const x = 5.123000000000000000000000000001
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2 │
ℹ The value at runtime will be 5.123
const x = 0x20000000000001code-block.js:1:11 lint/correctness/noPrecisionLoss ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This number literal will lose precision at runtime.
> 1 │ const x = 0x20000000000001
│ ^^^^^^^^^^^^^^^^
2 │
ℹ The value at runtime will be 9007199254740992
const x = 0x2_000000000_0001;code-block.js:1:11 lint/correctness/noPrecisionLoss ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This number literal will lose precision at runtime.
> 1 │ const x = 0x2_000000000_0001;
│ ^^^^^^^^^^^^^^^^^^
2 │
ℹ The value at runtime will be 9007199254740992
¥Valid
const x = 12345const x = 123.456const x = 123e34const x = 12300000000000000000000000const x = 0x1FFFFFFFFFFFFFconst x = 9007199254740991const x = 9007_1992547409_91¥Related links
Biome v2.1 中文网 - 粤ICP备13048890号