Zero before decimal point

IDSTAT-26
TitleAlways use a zero before the decimal point in numeric expressions.
PriorityRecommended
Severity level10
DescriptionAlways use a zero before the decimal point in numeric expressions.
RationaleIncreases the readability of the code.

Avoid:

THRESHOLD = .5;

Instead use:

THRESHOLD = 0.5;