Group: style
Maturity: stable
Dart SDK: >= 2.1.0 • (Linter v0.1.71)
Since info is static, may be staleDO use int literals rather than the corresponding double literal.
BAD:
const double myDouble = 8.0;
final anotherDouble = myDouble + 7.0e2;
main() {
someMethod(6.0);
}
GOOD:
const double myDouble = 8;
final anotherDouble = myDouble + 700;
main() {
someMethod(6);
}
To enable the prefer_int_literals
lint,
add prefer_int_literals
under linter > rules in your
analysis_options.yaml
file:
linter:
rules:
- prefer_int_literals