Documentation ¶
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 ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Analyzer = &analysis.Analyzer{ Name: "timeformat", Doc: analysisutil.MustExtractDoc(doc, "timeformat"), URL: "https://pkg.go.dev/github.com/TBD54566975/golang-tools/go/analysis/passes/timeformat", Requires: []*analysis.Analyzer{inspect.Analyzer}, Run: run, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.