Closed
Description
yyyy-dd-mm
is a time format that isn't really used anywhere [1]. It is much more likely that the user intended to use
yyyy-mm-dd
instead and made a mistake. This happens quite often [2] because of the unusual way to handle time formatting and parsing in Go. Since the mistake is Go specific and happens so often a vet check will be useful.
See: golang/tools#342