Reports variables that don't have specified type

When code cannot parse what type is variable holding, it must be specified manualy

Example:


  var int_val = 1
  val string_val = ""

After the quick-fix is applied:


  var int_val: int = 1
  val string_val: String = ""

Or when short option is used:


  var int_val := 1
  val string_val := ""

Since 1.1.0