Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 322 Bytes

Lint-FloatOutOfRange.md

File metadata and controls

24 lines (15 loc) · 322 Bytes

Pattern: Float out of range

Issue: -

Description

This rule identifies Float literals which are out of range.

Examples

# bad

float = 3.0e400
# good

float = 42.9

Further Reading