prefer_int_literals

Group: style

Maturity: stable

Dart SDK: >= 2.1.0 • (Linter v0.1.71)

Since info is static, may be stale
has-fix

View all Lint Rules

Using the Linter

DO 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);
}

Usage

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