Pattern: Float out of range
Issue: -
This rule identifies Float literals which are out of range.
# bad
float = 3.0e400
# good
float = 42.9
Pattern: Float out of range
Issue: -
This rule identifies Float literals which are out of range.
# bad
float = 3.0e400
# good
float = 42.9