...

Package timeformat

import "cmd/vendor/golang.org/x/tools/go/analysis/passes/timeformat"
Overview
Index

Overview ▾

Package timeformat defines an Analyzer that checks for the use of time.Format or time.Parse calls with a bad format.

Analyzer timeformat

timeformat: check for calls of (time.Time).Format or time.Parse with 2006-02-01

The timeformat checker looks for time formats with the 2006-02-01 (yyyy-dd-mm) format. Internationally, "yyyy-dd-mm" does not occur in common calendar date standards, and so it is more likely that 2006-01-02 (yyyy-mm-dd) was intended.

Package timeformat defines an Analyzer that checks for the use of time.Format or time.Parse calls with a bad format.

Index ▾

Package files

doc.go timeformat.go

Variables

var Analyzer = &analysis.Analyzer{
    Name:     "timeformat",
    Doc:      analysisutil.MustExtractDoc(doc, "timeformat"),
    URL:      "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/timeformat",
    Requires: []*analysis.Analyzer{inspect.Analyzer},
    Run:      run,
}