Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dart : How to ignore omit_local_variable_types warning?

I'm developing a mobile app plus web frontend with Dart / Flutter with IntelliJ Idea. The current version of Dart warns about correctly typing local variables. There is a Dart style guide https://dart-lang.github.io/linter/lints/omit_local_variable_types.html saying "Usually, the types of local variables can be easily inferred, so it isn't necessary to annotate them."

This might be true for a compiler but it sure is not true for human readers. Since it especially defers type problems to the usage part of a variable, bug detection and code reading is becoming more expensive.

So how can I disable this warning on compiler / project level?

Even better: how can I force a warning if the type is not set?

like image 830
Jemolah Avatar asked Dec 06 '19 11:12

Jemolah


3 Answers

I know this is a bit old, but I see there isn’t an answer, so adding here now for future use.

In the root of your project folder, add an “analysis_options.yaml” file, and include the below code. Read further at: https://dart.dev/guides/language/analysis-options

analysis _options.yaml:

linter:
    rules:
        always_specify_types: true
        omit_local_variable_types: false

Unsure if both are required when always specifying types, but give it a go.

like image 121
E_C Avatar answered Sep 23 '22 23:09

E_C


To ignore the warnings only for a specific file:

// ignore_for_file: omit_local_variable_types

class Foo {
  // ...
}
like image 37
CopsOnRoad Avatar answered Sep 22 '22 23:09

CopsOnRoad


Add // ignore: omit_local_variable_types above warning code line:

  // ignore: omit_local_variable_types
  int years = (dif.inDays / 365).floor();
like image 25
Blasanka Avatar answered Sep 22 '22 23:09

Blasanka