Avoid custom time format

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

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