Avoid custom time format

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: go-best-practices/time-parse-format

Language: Go

Severity: Info

Category: Best Practices

Description

Make sure your code use a valid time format. See the official Go documentation for the valid time format.

Non-Compliant Code Examples

func main() {
    time.Parse("foobar", something)
    time.Parse("00", something_else);
}

Compliant Code Examples

func main() {
    time.Parse(time.ANSIC, something)
    time.Parse("2006-01-02", something_else)

    mytime := time.ANSIC
    time.Parse(mytime, another_thing)
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis