Reports GDScript variable and constant declarations that miss an explicit type hint when it can be inferred, and flags typed use of the := assignment.

Notes:

Example:


var hp = 100          # suggests: var hp: int = 100
var hp: int := 100    # error: ":=" assignment cannot be typed
var hp: int = 100     # OK