Avoid leading or trailing decimal points in numbers

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: typescript-code-style/no-floating-decimal

Language: TypeScript

Severity: Notice

Category: Code Style

Description

To prevent confusion between the dot operator and the decimal point, always use a leading number when writing floating point numbers.

Non-Compliant Code Examples

var x = .5;
var x = -.5;
var x = 2.;
var x = -2.;
typeof.2
for(foo of.2);

Compliant Code Examples

var x = 2.5;
var x = "2.5";
var t = {
    ecmaVersion: 2018,
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis