禁止精度丢失
禁止丢失精度的字面量数字。
✅
在 "plugin:@typescript-eslint/recommended"
中扩展 ESLint 配置文件 将启用此规则。
此规则扩展了基本 eslint/no-loss-of-precision
规则。它添加了对 数字分隔符 的支持。
选项
参见 eslint/no-loss-of-precision
选项。
如何使用
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"no-loss-of-precision": "off",
"@typescript-eslint/no-loss-of-precision": "error"
}
};
在游乐场中尝试此规则 ↗